GET
/
v2
/
projects
/
{project_id}
/
financial-statement
Get financial statement for a project
curl --request GET \
  --url https://api.tokenterminal.com/v2/projects/{project_id}/financial-statement \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "timestamp": "<string>",
      "timestamp_label_heading": "<string>",
      "timestamp_label_subheading": "<string>",
      "timestamp_granularity": "<string>",
      "project_name": "<string>",
      "section": "<string>",
      "metric_id": "<string>",
      "value": "<string>",
      "pop_change": "<string>",
      "definition": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

project_id
string
required

The project ID to retrieve financial statement for.

Query Parameters

timestamp_granularity
enum<string>
default:quarter

The financial statement time granularity.

Available options:
year,
quarter,
month,
week
interval
enum<string>
default:1y

The time interval to retrieve financial statement for.

Available options:
1m,
1y,
2y,
3y,
5y,
max

Response

200 - application/json

OK

The response is of type object.