Skip to main content
POST
/
api
/
builtin
/
companies
/builtin/companies
curl --request POST \
  --url https://api.anysite.io/api/builtin/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "alias": "<string>",
    "@type": "@builtin_company",
    "id": 123,
    "name": "<string>",
    "description": "<string>",
    "web_url": "<string>",
    "image": "<string>",
    "address": {
      "@type": "@builtin_company_address",
      "locality": "<string>",
      "region": "<string>",
      "country": "<string>",
      "postal_code": "<string>",
      "street_address": "<string>"
    },
    "headquarters": "<string>",
    "industries": [],
    "employee_count": 123,
    "product_tech_employee_count": 123,
    "office_count": 123,
    "offices": [],
    "founded_year": 123,
    "open_job_count": 123,
    "profile_url": "<string>"
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company slug or Built In company URL

Minimum string length: 1
Examples:

"block-inc"

"https://builtin.com/company/block-inc"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

alias
string
required
@type
string
default:@builtin_company
id
integer | null
name
string | null
description
string | null
web_url
string | null
image
string | null
address
BuiltinCompanyAddress · object
headquarters
string | null
industries
string[]
employee_count
integer | null
product_tech_employee_count
integer | null
office_count
integer | null
offices
string[]
founded_year
integer | null
open_job_count
integer | null
profile_url
string | null