POST
/
companies
/
fetch
curl --request POST \
  --url https://bee.theswarm.com/companies/fetch \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "fields": "company_info"
}'
{
  "results": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "company_info": {
        "id": "<string>",
        "crunchbase_id": "<string>",
        "crunchbase_slug": "<string>",
        "stock_ticker": "<string>",
        "name": "<string>",
        "description": "<string>",
        "canonical_name": "<string>",
        "founded": "2023-11-07T05:31:56Z",
        "industry": "<string>",
        "website": "<string>",
        "size": {
          "class": "<string>",
          "class_sort": 123
        },
        "linkedin_slugs": [
          "<string>"
        ],
        "locations": [
          {
            "name": "<string>",
            "country": "<string>",
            "is_primary": true
          }
        ],
        "logo_url": "<string>",
        "type": [
          "<string>"
        ],
        "specialities": [
          "<string>"
        ],
        "investments": [
          "<string>"
        ],
        "geography_focus": [
          "<string>"
        ],
        "funding": {
          "last_round": {
            "last_round_type": "<string>",
            "last_round_amount_usd": 123,
            "last_round_date": "2023-11-07T05:31:56Z",
            "last_round_investors": [
              {
                "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
                "kind": "<string>",
                "name": "<string>",
                "crunchbase_id": "<string>",
                "crunchbase_slug": "<string>"
              }
            ]
          },
          "rounds": [
            {
              "type": "<string>",
              "amount_usd": 123,
              "date": "2023-11-07T05:31:56Z",
              "investors": [
                {
                  "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
                  "kind": "<string>",
                  "name": "<string>",
                  "crunchbase_id": "<string>",
                  "crunchbase_slug": "<string>"
                }
              ]
            }
          ],
          "total_funding_amount_usd": 123
        },
        "updated_at": "2023-11-07T05:31:56Z",
        "created_at": "2023-11-07T05:31:56Z",
        "data_updated_at": "2023-11-07T05:31:56Z"
      },
      "tags": [
        {
          "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
          "name": "<string>"
        }
      ],
      "associated_profiles": 123
    }
  ],
  "notFound": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ]
}

By default, the response contains basic company info and firmographic data. The API user may specify additional data about the company in the fields object that accepts the following values:

company_infoBasic company information and firmograhpic data (returned by default if no field is specified)
assosiated_profilesCount of all people profiles currently working at the company
tagsTags assigned to the company

For more details see Models > Company.

Authorizations

x-api-key
string
header
required

Body

application/json
ids
string[]
required
fields
enum<string>[]
required
Available options:
company_info,
associated_profiles,
tags

Response

200
application/json
A list of companies with corresponding data
results
object[]
required

List of companies with corresponding data

notFound
string[]

List of company ids that were not found