Skip to main content
GET
/
gateway
/
v1
/
fund
/
detail
Fund Profile Detail
curl --request GET \
  --url https://api.ask.surf/gateway/v1/fund/detail
{
  "data": {
    "id": "<string>",
    "invested_projects_count": 123,
    "links": [
      {
        "type": "<string>",
        "value": "<string>"
      }
    ],
    "members": [
      {
        "name": "<string>",
        "roles": [
          "<string>"
        ],
        "avatar": "<string>"
      }
    ],
    "name": "<string>",
    "recent_researches": [
      {
        "id": "<string>",
        "published_at": 123,
        "title": "<string>",
        "url": "<string>"
      }
    ],
    "tier": 123,
    "x_accounts": [
      {
        "followers_count": 123,
        "handle": "<string>",
        "id": "<string>",
        "display_name": "<string>",
        "profile_image": "<string>"
      }
    ],
    "description": "<string>",
    "image": "<string>",
    "jurisdiction": "<string>",
    "type": "<string>"
  },
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

id
string

Surf fund UUID. PREFERRED — always use this when available from a previous response (e.g. id from /search/fund). Takes priority over q.

Example:

"ef3b6da9-283d-4080-b3c7-87b1b45924dc"

q
string

Fuzzy fund name search. Only use when 'id' is not available. May return unexpected results for ambiguous names.

Maximum string length: 100
Example:

"a16z"

Response

OK

data
object
required
meta
object
required
$schema
string<uri>

A URL to the JSON Schema for this object.

Example:

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