API Reference
GET /v1/search

GET /v1/search

Search across entities followed by your tracked accounts. Filter by sector, keyword, or entity type.

Cost: $0.03 per call

curl "https://frontrun.vc/v1/search?sector=AI/ML&entity_type=startup" \
  -H "X-API-Key: your_api_key"

Parameters

At least one filter is required.

ParameterTypeDefaultDescription
sectorstring (query)--Filter by sector. Case-insensitive partial match. Values: "AI/ML", "Fintech", "Enterprise SaaS", "Crypto/Web3", "Healthcare", "Climate", "Developer Tools", "Consumer", "Cybersecurity"
entity_typestring (query)--Filter by entity type. Values: "startup", "growth_company", "enterprise", "vc_fund", "accelerator", "media", "individual"
keywordstring (query)--Free-text search across username, sector, and bio.
limitinteger (query)50Maximum results (max 200).

Response

{
  "filters": {
    "sector": "AI/ML",
    "keyword": null,
    "entity_type": "startup"
  },
  "total": 23,
  "cost_cents": 3,
  "balance_cents": 4842,
  "results": [
    {
      "twitter_user_id": "1234567890",
      "username": "newai_startup",
      "description": "Building the future of AI infrastructure",
      "classification": {
        "is_company": true,
        "confidence": "high",
        "sector": "AI/ML",
        "entity_type": "startup"
      }
    }
  ]
}