Skip to main content
GET
/
gateway
/
v1
/
project
/
detail
Aggregated Project Detail
curl --request GET \
  --url https://api.ask.surf/gateway/v1/project/detail
{
  "data": {
    "contracts": {
      "contracts": [
        {
          "address": "<string>",
          "chain": "<string>",
          "label": "<string>"
        }
      ]
    },
    "funding": {
      "rounds": [
        {
          "round_name": "<string>",
          "amount": 123,
          "date": "<string>",
          "investors": [
            {
              "is_lead": true,
              "name": "<string>",
              "logo": "<string>",
              "type": "<string>"
            }
          ],
          "valuation": 123
        }
      ],
      "total_raise": 123
    },
    "social": {
      "discord": {
        "followers_count": 123,
        "handle": "<string>",
        "url": "<string>"
      },
      "github": {
        "followers_count": 123,
        "handle": "<string>",
        "url": "<string>"
      },
      "telegram": {
        "followers_count": 123,
        "handle": "<string>",
        "url": "<string>"
      },
      "twitter": {
        "followers_count": 123,
        "handle": "<string>",
        "url": "<string>"
      }
    },
    "team": {
      "members": [
        {
          "name": "<string>",
          "image": "<string>",
          "role": "<string>",
          "social_links": {}
        }
      ]
    },
    "tge_status": {
      "current_status": "<string>",
      "exchanges": [
        "<string>"
      ],
      "last_event_time": 123
    },
    "tokenomics": {
      "circulating_supply": 123,
      "fdv": 123,
      "market_cap_usd": 123,
      "total_supply": 123
    }
  },
  "meta": {
    "cached": true,
    "credits_used": 123
  },
  "$schema": "<string>"
}

Query Parameters

id
string

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

Example:

"25c6612a-395c-4974-94eb-3b5f9f4b2ed7"

q
string

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

Example:

"ethereum"

fields
string
default:overview,token_info,tokenomics,funding,team,contracts,social,tge_status

Comma-separated sub-resources to include. Can be overview, token_info, tokenomics, funding, team, contracts, social, or tge_status.

Example:

"overview,token_info,funding"

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/DataObjectResponseHumaProjectDetailBody.json"