Logo Lookup
POST/logo

Logo Lookup

Find square and horizontal logos for any company across our 65M+ company-profile graph. Checks our curated logo cache first, then fetches live from the company website. Best-in-class success rate.

POSThttps://www.startuphub.ai/api/v1/logo

Request

curl -X POST "https://www.startuphub.ai/api/v1/logo" \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{"name": "Stripe", "website": "https://stripe.com"}'

Parameters

namestringoptional

Company name (used for cache lookup)

websitestringrequired

Company website URL (required for live fetch)

Response

json
{
  "data": {
    "name": "Stripe",
    "square_logo": "https://cdn.startuphub.ai/logos/stripe.png",
    "horizontal_logo": "https://cdn.startuphub.ai/logos/stripe-h.png",
    "has_square": true,
    "has_horizontal": true,
    "source": "cache"
  }
}

// has_horizontal is null/false for ~60% of companies (no marketing-site
// wordmark to scrape). has_square is populated for ~95% of companies via
// favicon + og:image fallbacks. Both fields surface as either a CDN URL
// or null — clients should null-check before rendering.