Multiples
V2

Get historical monthly time series data

POST
/api/v2/companies/time-series

Returns historical monthly data for the specified companies. Optionally filter by fields and date range.

Authorization

bearerAuth
AuthorizationBearer <token>

API token provided as a Bearer token in the Authorization header. Generate your token at app.multiples.vc.

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v2/companies/time-series" \  -H "Content-Type: application/json" \  -d '{    "skus": [      "MSFT-USA",      "AAPL-USA"    ]  }'
{  "data": [    {      "sku": "MSFT-USA",      "ticker": "MSFT",      "exchange": "NAS",      "data": {        "evRevenueLtm": {          "2024-01": 12.1,          "2024-02": 11.8,          "2024-03": 11.5        },        "marginEbitdaLtm": {          "2024-01": 48.2,          "2024-02": 48.5,          "2024-03": 48.9        }      }    }  ],  "meta": {    "count": 1  }}
{  "error": {    "code": "BAD_REQUEST",    "message": "Invalid request",    "details": {      "errors": [        "skus must not be empty"      ]    }  }}

{  "error": {    "code": "MISSING_TOKEN",    "message": "Authorization header is required"  }}

{  "error": {    "code": "INTERNAL_ERROR",    "message": "An internal error occurred"  }}