Skip to main content
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

_id
string | null

MongoDB ObjectId of the company.

domain
string | null

Company's domain name.

nameOfFirm
string | null

Name of the firm.

addressLine1
string | null

Primary address line.

addressLine2
string | null

Secondary address line.

city
string | null

City where the company is located.

phoneNumber
string | null

Primary phone number of the company.

eMailAddress
string | null

Primary email address of the company.

yearEstablished
string | null

Year the company was established.

keywords
string[] | null

Keywords associated with the company.

naicsCodes
number[] | null

List of NAICS codes for the company.

naicsDescriptions
string[] | null

Descriptions for the company's NAICS codes.

description
string | null

Brief description of the company.

certifications
string[] | null

Verified certifications held by the company.

unverifiedCertifications
string[] | null

Unverified certifications claimed by the company.

revenue
object | null

Revenue information of the company.

size
object | null

Company size information.

location
object | null

Location details of the company.