API Reference
GET /v1/linkedin/:username

GET /v1/linkedin/:username

Resolve a Twitter handle to a LinkedIn profile. Uses a multi-step pipeline: extract real name from Twitter signals, search LinkedIn via Google, scrape and verify the profile.

Cost: $0.10 per call — not available on X API or twit.sh

curl "https://frontrun.vc/v1/linkedin/pmarca" \
  -H "X-API-Key: your_api_key"

Parameters

ParameterTypeDescription
usernamestring (path)Twitter username (without @)

Response

{
  "username": "pmarca",
  "twitter": {
    "name": "Marc Andreessen",
    "description": "..."
  },
  "linkedin_url": "https://www.linkedin.com/in/marcandreessen",
  "linkedin_profile": {
    "fullName": "Marc Andreessen",
    "headline": "Co-founder and General Partner at Andreessen Horowitz",
    "location": "Menlo Park, California",
    "workHistory": [
      {
        "title": "Co-founder and General Partner",
        "company": "Andreessen Horowitz",
        "startDate": "2009-06",
        "endDate": "Present"
      }
    ],
    "education": [
      {
        "school": "University of Illinois",
        "degree": "BS",
        "field": "Computer Science"
      }
    ],
    "skills": ["Venture Capital", "Technology", "Startups"]
  },
  "enrichment_status": "enriched",
  "name_extracted": "Marc Andreessen",
  "name_confidence": "high",
  "cost_cents": 10,
  "balance_cents": 9890
}