Skip to main content
POST
/
v1
/
income-statement
/
query
Income Statement
curl --request POST \
  --url https://api.bigdata.com/v1/income-statement/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "identifier": {
    "type": "rp_entity_id",
    "value": "<string>"
  },
  "period": "quarter",
  "limit": 20
}
'
{
  "results": {
    "rp_entity_id": "<string>",
    "target_identifier_id": "<string>",
    "fields": [
      "FISCAL_PERIOD_END_DATE"
    ],
    "values": [
      "<array>"
    ]
  },
  "errors": [
    {
      "message": "<string>"
    }
  ],
  "metadata": {
    "request_id": "<string>",
    "timestamp": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
identifier
SingleIdentifier · object
required

Object specifying which identifier you are using to request the income statement. You must supply one type and its corresponding value.

period
enum<string>
default:quarter

Select whether the income statement to be provided are on an annual or quarterly basis.

Available options:
annual,
quarter
Example:

"quarter"

limit
integer | null
default:20

Maximum number of income statements records to return. If omitted, all income statements records are returned.

Example:

20

Response

200 - application/json

Successful Response

results
IncomeStatement · object
required
errors
ErrorDetail · object[] | null
metadata
Metadata · object