Skip to main content
POST
/
api
/
levelsfyi
/
companies
/levelsfyi/companies
curl --request POST \
  --url https://api.anysite.io/api/levelsfyi/companies \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "alias": "<string>",
    "name": "<string>",
    "url": "<string>",
    "@type": "@levelsfyi_company",
    "description": "<string>",
    "short_description": "<string>",
    "website": "<string>",
    "career_page": "<string>",
    "image": "<string>",
    "cover": "<string>",
    "ticker": "<string>",
    "industry": "<string>",
    "company_type": "<string>",
    "funding_stage": "<string>",
    "year_founded": 123,
    "emp_count": 123,
    "employee_count_range": "<string>",
    "estimated_annual_revenue": "<string>",
    "estimated_valuation": "<string>",
    "pay_schedule": "<string>",
    "hq_address": "<string>",
    "hq_city": "<string>",
    "hq_state": "<string>",
    "hq_state_code": "<string>",
    "hq_country": "<string>",
    "hq_latitude": 123,
    "hq_longitude": 123,
    "linkedin": "<string>",
    "twitter": "<string>",
    "crunchbase": "<string>",
    "ein": "<string>",
    "domains": [],
    "general_levels": [],
    "vesting_type": "<string>",
    "vesting_schedule": "<string>",
    "vesting_detail": "<string>",
    "updated_at": "<string>",
    "tags": [],
    "aliases": [],
    "insights": [],
    "related_companies": []
  }
]

Authorizations

access-token
string
header
required

API token from the dashboard

Headers

access-token
string
required

Body

application/json
company
string
required

Company alias (the URL segment, e.g. 'google') or a full company profile URL

Minimum string length: 1
Pattern: ^(?:https?://[^\s]+|[A-Za-z0-9][A-Za-z0-9._-]*)$
Examples:

"google"

"microsoft"

"https://www.levels.fyi/companies/google"

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
alias
string
required
name
string
required
url
string
required
@type
string
default:@levelsfyi_company
description
string | null
short_description
string | null
website
string | null
career_page
string | null
image
string | null
cover
string | null
ticker
string | null
industry
string | null
company_type
string | null
funding_stage
string | null
year_founded
integer | null
emp_count
integer | null
employee_count_range
string | null
estimated_annual_revenue
string | null
estimated_valuation
string | null
pay_schedule
string | null
hq_address
string | null
hq_city
string | null
hq_state
string | null
hq_state_code
string | null
hq_country
string | null
hq_latitude
number | null
hq_longitude
number | null
linkedin
string | null
twitter
string | null
crunchbase
string | null
ein
string | null
domains
string[]
general_levels
string[]
vesting_type
string | null
vesting_schedule
string | null
vesting_detail
string | null
updated_at
string | null
tags
string[]
aliases
string[]
insights
LevelsfyiCompanyInsight · object[]