Skip to main content
GET
/
gateway
/
v1
/
search
/
project
Project Search
curl --request GET \
  --url https://api.ask.surf/gateway/v1/search/project
{
  "data": [
    {
      "id": "<string>",
      "name": "<string>",
      "chains": [
        "<string>"
      ],
      "description": "<string>",
      "logo_url": "<string>",
      "slug": "<string>",
      "symbol": "<string>",
      "tags": [
        "<string>"
      ],
      "tokens": [
        {
          "id": "<string>",
          "name": "<string>",
          "symbol": "<string>",
          "image": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

q
string
required

Search keyword — project name or ticker like uniswap, bitcoin, or ETH

Maximum string length: 100
Example:

"bitcoin"

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