Skip to main content
GET
/
gateway
/
v1
/
fund
/
ranking
Fund Ranking
curl --request GET \
  --url https://api.ask.surf/gateway/v1/fund/ranking
{
  "data": [
    {
      "id": "<string>",
      "invested_projects_count": 123,
      "name": "<string>",
      "tier": 123,
      "top_projects": [
        {
          "is_lead": true,
          "project_id": "<string>",
          "project_name": "<string>",
          "invested_at": 123,
          "project_logo": "<string>",
          "project_slug": "<string>",
          "recent_raise": 123,
          "total_raise": 123
        }
      ],
      "image": "<string>",
      "type": "<string>"
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

metric
enum<string>
required

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

Available options:
tier,
portfolio_count
Example:

"tier"

limit
integer<int64>
default:20

Results per page

Required range: 1 <= x <= 100
Example:

20

offset
integer<int64>
default:0

Pagination offset

Required range: x >= 0
Example:

0

Response

OK

data
object[] | null
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

"https://example.com/schemas/DataResponseFundSearchItem.json"