POST
/
v2
/
markets
/
{marketId}
/
companies
/
{domain}
/
esg
Get ESG data for a company in a market
curl --request POST \
  --url https://rest.forestreet.com/v2/markets/{marketId}/companies/{domain}/esg \
  --header 'x-api-key: <api-key>'
{
  "metadata": {
    "pagination": {
      "totalItems": 123,
      "filteredTotalItems": 123,
      "prevPage": 123,
      "nextPage": 123,
      "totalPages": 123,
      "currentPage": 123,
      "pageSize": 123
    }
  },
  "sentimentScores": {
    "environmental": 123,
    "social": 123,
    "governance": 123
  },
  "labels": {
    "environmental": [
      {
        "label": "<string>",
        "count": 123
      }
    ],
    "social": [
      {
        "label": "<string>",
        "count": 123
      }
    ],
    "governance": [
      {
        "label": "<string>",
        "count": 123
      }
    ]
  },
  "data": [
    {
      "_id": "<string>",
      "marketId": "<string>",
      "domain": "<string>",
      "URL": "<string>",
      "title": "<string>",
      "snippet": "<string>",
      "datePublished": "<string>",
      "dateRetrieved": "<string>",
      "source": "<string>",
      "sourceLogoBase64": "<string>",
      "sourceLogoURL": "<any>",
      "esgLabels": [
        {
          "label": "<string>",
          "category": "<string>"
        }
      ],
      "sentimentScore": 123,
      "versionDate": "<string>",
      "awards": true,
      "certifications": true
    }
  ]
}

Authorizations

x-api-key
string
header
required

Pass a static API key for every request, provided by your customer support.

Path Parameters

marketId
integer
required
Required range: x > 0
domain
string
required

Query Parameters

page
integer
default:1
Required range: x > 0
pageSize
integer
default:50
Required range: 0 < x <= 100

Response

200 - application/json

Company ESG data response schema

The response is of type object.