Multiples
V2

Get aggregated median time series for a group of companies

POST
/api/v2/groups/time-series

Returns aggregated median time series data across companies matching the provided filters. At least one filter is required.

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.

At least one filter (industries, themes, regions, or countries) must be provided.

At least one filter (industries, themes, regions, or countries) must be provided.

Response Body

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/api/v2/groups/time-series" \  -H "Content-Type: application/json" \  -d '{    "industries": [      "Enterprise Software"    ],    "countries": [      "USA"    ],    "fields": [      "evRevenueLtm",      "marginEbitdaLtm"    ],    "dateFrom": "2024-01",    "dateTo": "2024-06"  }'
{  "data": [    {      "period": "2024-01",      "median": {        "evRevenueLtm": 8.5,        "marginEbitdaLtm": 27.3      }    },    {      "period": "2024-02",      "median": {        "evRevenueLtm": 8.3,        "marginEbitdaLtm": 27.8      }    }  ],  "meta": {    "count": 2,    "companies": 145  }}
{  "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"  }}