Submit a Person
POST/people/submit

Submit a Person

Submit a new person profile (founder, executive, board member). Requires either current_title or linkedin_url to disambiguate from common-name dupes. Third-person bio, plain text, ≤300 words.

POSThttps://www.startuphub.ai/api/v1/people/submit

Request

curl -X POST "https://www.startuphub.ai/api/v1/people/submit" \
  -H "Authorization: Bearer sk_live_..." \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Dario Amodei",
    "current_title": "CEO and Co-founder at Anthropic",
    "linkedin_url": "https://linkedin.com/in/darioamodei",
    "description": "Dario Amodei is the CEO and co-founder of Anthropic. He previously served as VP of Research at OpenAI.",
    "country": "United States"
  }'

Parameters

namestringrequired

Person's full name (≤80 chars)

current_titlestringoptional

e.g. "CEO at OpenAI" — required if no linkedin_url

linkedin_urlstringoptional

Personal LinkedIn (linkedin.com/in/...) — required if no current_title

descriptionstringoptional

Third-person bio, ≤300 words

citystringoptional
countrystringoptional
twitter_urlstringoptional
github_urlstringoptional
avatar_urlstringoptional

Optional avatar image URL (≤2MB)

Response

json
{
  "success": true,
  "status": "pending_review",
  "person": { "id": "uuid", "slug": "dario-amodei", "name": "Dario Amodei",
    "url": "https://www.startuphub.ai/people/dario-amodei",
    "moderation_status": "flagged_pending" },
  "credits": { "used": 5, "limit": 100, "remaining": 95 }
}