curl --request POST \
--url https://api.bigdata.com/v1/fmp/analyst-estimates/query \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"identifier": {
"type": {
"type": "rp_entity_id",
"value": "4A6F00"
},
"value": "<string>"
},
"period": "annual",
"limit": 123
}'
{
"results": {
"rp_entity_id": "<string>",
"target_identifier_id": "<string>",
"fields": [
"<string>"
],
"values": [
[
123
]
]
},
"errors": [
{
"message": "<string>"
}
],
"pagination": {
"cursor": "00000DexaRK4NT6t",
"has_cursor": true
},
"metadata": {
"request_id": "<string>",
"timestamp": "<string>"
}
}
Returns the analyst estimates for the given identifier.
curl --request POST \
--url https://api.bigdata.com/v1/fmp/analyst-estimates/query \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--data '{
"identifier": {
"type": {
"type": "rp_entity_id",
"value": "4A6F00"
},
"value": "<string>"
},
"period": "annual",
"limit": 123
}'
{
"results": {
"rp_entity_id": "<string>",
"target_identifier_id": "<string>",
"fields": [
"<string>"
],
"values": [
[
123
]
]
},
"errors": [
{
"message": "<string>"
}
],
"pagination": {
"cursor": "00000DexaRK4NT6t",
"has_cursor": true
},
"metadata": {
"request_id": "<string>",
"timestamp": "<string>"
}
}
Successful Response
The response is of type object
.
Was this page helpful?