Skip to main content
POST
/
api
/
yc
/
company
/yc/company
curl --request POST \
  --url https://api.anysite.io/api/yc/company \
  --header 'Content-Type: application/json' \
  --header 'access-token: <api-key>' \
  --data '
{
  "company": "<string>",
  "timeout": 300
}
'
[
  {
    "id": 123,
    "name": "<string>",
    "slug": "<string>",
    "@type": "YCCompany",
    "website": "<string>",
    "one_liner": "<string>",
    "long_description": "<string>",
    "team_size": 123,
    "industry": "<string>",
    "subindustry": "<string>",
    "industries": [],
    "regions": [],
    "batch": "<string>",
    "status": "<string>",
    "stage": "<string>",
    "tags": [],
    "is_hiring": true,
    "nonprofit": true,
    "top_company": true,
    "launched_at": 123,
    "all_locations": "<string>",
    "small_logo_thumb_url": "<string>",
    "former_names": [],
    "app_video_public": true,
    "demo_day_video_public": true,
    "app_answers": true,
    "question_answers": true,
    "founders": [],
    "jobs": [],
    "social_links": {
      "@type": "YCSocialLinks",
      "linkedin": "<string>",
      "twitter": "<string>",
      "facebook": "<string>",
      "crunchbase": "<string>",
      "github": "<string>"
    },
    "year_founded": 123,
    "city": "<string>",
    "country": "<string>",
    "logo_url": "<string>",
    "news_items": [],
    "launches": [],
    "company_photos": [],
    "primary_partner": {
      "name": "<string>",
      "@type": "YCPartner",
      "url": "<string>"
    }
  }
]

Authorizations

access-token
string
header
required

Headers

access-token
string
required

Body

application/json
company
string
required

YC company slug identifier (e.g., 'airbnb', 'stripe', 'openai')

timeout
integer
default:300

Max scrapping execution timeout (in seconds)

Required range: 20 <= x <= 1500

Response

Successful Response

id
integer
required
name
string
required
slug
string
required
@type
string
default:YCCompany
website
string | null
one_liner
string | null
long_description
string | null
team_size
integer | null
industry
string | null
subindustry
string | null
industries
string[]
regions
string[]
batch
string | null
status
string | null
stage
string | null
tags
string[]
is_hiring
boolean | null
nonprofit
boolean | null
top_company
boolean | null
launched_at
integer | null
all_locations
string | null
small_logo_thumb_url
string | null
former_names
string[]
app_video_public
boolean | null
demo_day_video_public
boolean | null
app_answers
boolean | null
question_answers
boolean | null
founders
YCFounder · object[]
jobs
YCJob · object[]
year_founded
integer | null
city
string | null
country
string | null
logo_url
string | null
news_items
YCNewsItem · object[]
launches
YCLaunch · object[]
company_photos
YCPhoto · object[]
primary_partner
YCPartner · object