POST
/
v1
/
price
/
target
/
query
Target Price
curl --request POST \
  --url https://api.bigdata.com/v1/price/target/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "identifier": {
    "type": "rp_entity_id",
    "value": "4A6F00"
  }
}'
{
  "results": [
    {
      "rp_entity_id": "4A6F00",
      "target_identifier_id": "GOOGL",
      "target_high": 290,
      "target_low": 160,
      "target_consensus": 242.31,
      "target_median": 265
    }
  ],
  "errors": [
    {
      "message": "<string>"
    }
  ],
  "pagination": {
    "cursor": "00000DexaRK4NT6t",
    "has_cursor": true
  },
  "metadata": {
    "request_id": "<string>",
    "timestamp": "<string>"
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json
identifier
object
required

An object containing the identifier value(s) and their type for the Target Price tool.

Response

200 - application/json

Successful Response

results
TargetPrice · object[]
required
errors
ErrorDetail · object[] | null
pagination
object | null

Common pagination response for endpoints that support pagination.

metadata
object | null