POST
/
companies
/
fetch
    curl \
  --location 'https://bee.theswarm.com/companies/fetch' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: $API_KEY' \
  --data \
  {
    "ids": [
      "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87"
    ]
  }
    curl \
  --location 'https://bee.theswarm.com/companies/fetch' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: $API_KEY' \
  --data \
  {
    "ids": [
      "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87"
    ]
  }

By default, the response contains .

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_info | Basic company information and firmograhpic data (returned by default if no field is specified) |

| assosiated_profiles | Count of all people profiles currently working at the company | | tags | Tags assigned to the company |

For more details see Models > Company.

    curl \
  --location 'https://bee.theswarm.com/companies/fetch' \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: $API_KEY' \
  --data \
  {
    "ids": [
      "09d9c510-c9f6-4c6e-9e62-fe5fedbeda87"
    ],
    "fields": [
      "company_info",
      "associated_profiles",
      "tags"
]
  }