API Reference
GET /v1/funding/:company

GET /v1/funding/:company

Look up crypto/web3 funding data from DefiLlama. Returns fundraising round details including amount, investors, and round type.

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

curl "https://frontrun.vc/v1/funding/Uniswap?handle=uniswap" \
  -H "X-API-Key: your_api_key"

Parameters

ParameterTypeDescription
companystring (path)Company name (required)
handlestring (query)Twitter handle for better matching (optional)

Response

{
  "company": "Uniswap",
  "found": true,
  "data": {
    "name": "Uniswap",
    "amount": 165000000,
    "round": "Series B",
    "date": "2022-10-13",
    "lead_investors": ["Polychain Capital"],
    "other_investors": ["a16z crypto", "Paradigm", "SV Angel"],
    "category": "Dexes",
    "source": "https://..."
  },
  "match_score": 100,
  "cost_cents": 1,
  "balance_cents": 9899
}