Get aggregated median time series for a group of companies
Returns aggregated median time series data across companies matching the provided filters. At least one filter is required.
Authorization
bearerAuth 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" }}Get aggregated current data for a group of companies POST
Returns aggregated sum and median values across companies matching the provided filters. At least one filter is required. **Sum-only fields**: marketCap, enterpriseValue. **Sum + median fields**: revenueLtm, revenueNtm, ebitdaLtm, ebitdaNtm. **Median-only fields**: All other numeric fields.
Search and filter companies POST
Returns a list of company identifiers matching the provided filters. All filters are optional; omitting all filters returns all companies.