GET
/
v2
/
impact
/
companies
/
{identifier}
Get a company
curl --request GET \
  --url https://rest.forestreet.com/v2/impact/companies/{identifier} \
  --header 'x-api-key: <api-key>'
{
  "_id": "<string>",
  "domain": "<string>",
  "nameOfFirm": "<string>",
  "addressLine1": "<string>",
  "addressLine2": "<string>",
  "city": "<string>",
  "phoneNumber": "<string>",
  "eMailAddress": "<string>",
  "yearEstablished": "<string>",
  "keywords": [
    "<string>"
  ],
  "naicsCodes": [
    123
  ],
  "naicsDescriptions": [
    "<string>"
  ],
  "description": "<string>",
  "certifications": [
    "<string>"
  ],
  "unverifiedCertifications": [
    "<string>"
  ],
  "revenue": {
    "id": 123,
    "label": "<string>",
    "actual": {
      "value": 123,
      "currency": "<string>"
    }
  },
  "size": {
    "id": 123,
    "label": "<string>",
    "actual": 123
  },
  "location": {
    "state": {
      "_id": "<string>",
      "type": "<string>",
      "name": "<string>",
      "code": "<string>",
      "country": "<string>"
    },
    "country": {
      "_id": "<string>",
      "type": "<string>",
      "name": "<string>",
      "code": "<string>"
    }
  }
}

Authorizations

x-api-key
string
header
required

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

Path Parameters

identifier
string
required

Unique identifier of the company.

Minimum length: 1

Response

200 - application/json

Get impact data for a specific company response

The response is of type object.