Asset Input Data

Asset Input Data

The asset input data resource returns all input data for a given asset, or for all assets in a portfolio. This endpoint provides the same data as the Scaler Template, but in JSON format.

Note: The structure and content of the Scaler Template may change over time. This API is not versioned, and no guarantees are made regarding the stability of fields or their format.

URL

Base URL

For all assets in a portfolio

https://api.scalerglobal.com/v1/portfolios/{porfolio_id}/assets/input-data

For a single asset

https://api.scalerglobal.com/v1/portfolios/{porfolio_id}/assets/{asset_id}/input-data

Pagination

Not enabled. This resource cannot be paginated.

Example Request

https://api.scalerglobal.com/v1/portfolios/12345/assets/6789/input-data

Response
{
    "success": true,
    "message": "Success",
    "data": {
        "Asset Details": [
            {
                "necessity": null,
                "scaler_asset_id": 123456,
                "client_asset_id": "ABC0001",
                ...
            },
            ...
        ],
        ...
    }
}

Data Fields

The response reflects the fields available in the current Scaler Template.

  • The exact fields and their structure may change at any time.
  • No complete list of fields is provided here.
  • This endpoint is intended as a snapshot of current input fields for convenience, not as a formal API contract.