Fund Search

GET/gateway/v1/search/fund

Searches funds by keyword.

Included fields: name, tier, type, logo, top invested projects.

Query Parameters

qstringrequired

Search keyword — fund name like `a16z`, `paradigm`, or `coinbase ventures`

Example: a16z
limitinteger

Results per page

Example: 20
offsetinteger

Pagination offset

Example: 0
Fund Search
const options = {method: 'GET'};

fetch('https://api.asksurf.ai/gateway/v1/search/fund?q=a16z&limit=20&offset=0', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
OK
{
  "$schema": "https://example.com/schemas/DataResponseFundSearchItem.json",
  "data": [
    {
      "id": "<string>",
      "image": "<string>",
      "invested_projects_count": 123,
      "name": "<string>",
      "tier": 123,
      "top_projects": [
        {
          "invested_at": 123,
          "is_lead": true,
          "project_id": "<string>",
          "project_logo": "<string>",
          "project_name": "<string>",
          "project_slug": "<string>",
          "recent_raise": 123,
          "total_raise": 123
        }
      ],
      "type": "<string>"
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "empty_reason": "<string>",
    "has_more": true,
    "limit": 123,
    "offset": 123,
    "total": 123,
    "watermark": 123
  }
}