Skip to main content
GET
/
api
/
data
/
companies
/
{id}
/
financials
Get financials
curl --request GET \
  --url https://api-next.dealroom.co/api/data/companies/{id}/financials \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "year": 123,
      "revenue": 123,
      "ebitda": 123,
      "valuation": 123,
      "employees": 123
    }
  ],
  "currency": "<string>"
}

Authorizations

Authorization
string
header
required

OAuth2 client-credentials flow against the Dealroom Auth0 tenant. Use the client_id / client_secret from a Programmatic API key. Tokens are valid for 24h — Swagger UI will reuse the same token across operations.

Path Parameters

id
string<uuid>
required

Stable UUID of the entity. Numeric ids are not accepted.

Minimum string length: 1
Example:

"345d1ab6-33df-4759-9e17-0d0c0ec9ab1c"

Query Parameters

currency
string

ISO 4217 currency code for monetary field conversion. Defaults to USD.

Example:

"EUR"

Response

Company financials by year

data
object[]
required
currency
string
required