Fund Ranking

GET/gateway/v1/fund/ranking

Returns top crypto VC funds ranked by tier or portfolio count.

Available metrics: `tier` (lower is better), `portfolio_count` (number of invested projects).

Query Parameters

metricenum<string>required

Ranking metric. Can be `tier` (lower is better) or `portfolio_count` (number of invested projects).

Available options:tierportfolio_count
Example: tier
limitinteger

Results per page

Example: 20
offsetinteger

Pagination offset

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

fetch('https://api.asksurf.ai/gateway/v1/fund/ranking?metric=tier&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
  }
}