Skip to main content
POST
/
company
cURL
curl --request POST \
  --url https://anyenrich.com/v1/enrich/company \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "website": "<string>",
  "firmographic": true,
  "query": "<string>"
}'
{
  "id": "<string>",
  "status": "success",
  "credits_used": 123,
  "credits_remaining": 123,
  "firmographic": {
    "name": "<string>",
    "industry": "<string>",
    "description": "<string>",
    "revenue": 123,
    "company_size": 123,
    "location": {
      "country": "<string>",
      "state": "<string>",
      "city": "<string>"
    }
  },
  "query_response": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Company enrichment object

name
string

Name of the company you want to enrich. You must include either a company name or a website.

website
string

Website of the company you want to enrich. You must include either a company name or a website.

firmographic
boolean

Request firmographic data for the company you want to enrich.

Consumes 1 credit.

query
string

Request AI queries you want to include in the enrichment request. You can use natural language to describe the query and our AI will do the rest.

Consumes 1 Credit

Response

Company enrichment response

id
string

Unique identifier for the enrichment request

status
enum<string>
Available options:
success,
info_not_found
credits_used
integer

Number of credits used for the enrichment request

credits_remaining
integer

Number of credits remaining for the enrichment request

firmographic
object | null

Firmographic data that was enriched

query_response
string | null

Response to any additional enrichment queries, empty if no query was provided