Get Startup Profile
GET/startups/:slug

Get Startup Profile

Retrieve the full profile for a startup by its URL slug. Fields returned depend on your plan tier (Free returns basic fields, Pro+ returns everything).

GEThttps://www.startuphub.ai/api/v1/startups/:slug

Request

curl "https://www.startuphub.ai/api/v1/startups/anthropic" \
  -H "Authorization: Bearer sk_live_..."

Parameters

slugstringrequired

The startup slug (URL identifier)

Response

json
{
  "data": {
    "id": "550e8400-e29b-41d4-a716-446655440000",
    "name": "Anthropic",
    "slug": "anthropic",
    "one_liner": "AI safety company...",
    "description": "Anthropic is an AI safety...",
    "website": "https://anthropic.com",
    "hq_country": "United States",
    "total_funding": 15000000000,
    "employee_count": 1500,
    "sectors": ["AI", "ML"],
    "total_score": 92.5,
    "logo_url": "https://cdn.startuphub.ai/..."
  }
}

Errors

401Invalid or missing API key
403Stealth profile (Pro+ required)
404Startup not found