Skip to main content
POST
/
v1
/
esg-performance-score
/
query
ESG Scores
curl --request POST \
  --url https://api.bigdata.com/v1/esg-performance-score/query \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '
{
  "identifier": {
    "type": "rp_entity_id",
    "value": "<string>"
  }
}
'
{
  "results": {
    "rp_entity_id": "<string>",
    "name": "<string>",
    "ticker": "<string>",
    "industry": "Semiconductors",
    "economic_sector": "Electronic Technology",
    "esg_scores": [
      "<string>"
    ],
    "values": [
      [
        "<string>"
      ]
    ]
  }
}

Authorizations

X-API-KEY
string
header
required

Body

application/json

Schema for the request to the public API.

Only contains the identifier:

  • type: the identifier type (e.g., "rp_entity_id")
  • value: a single RP Entity ID or a list of IDs
identifier
SingleIdentifier · object
required

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

Response

Successful Response

results
ESGPerformanceScore · object
required
  • ESGPerformanceScore
  • EmptyResponse