Skip to main content
GET
/
gateway
/
v1
/
token
/
tokenomics
Token Unlock Schedule
curl --request GET \
  --url https://api.ask.surf/gateway/v1/token/tokenomics
{
  "data": [
    {
      "timestamp": 123,
      "unlock_amount": 123,
      "allocations": [
        {
          "amount": 123,
          "name": "<string>"
        }
      ]
    }
  ],
  "meta": {
    "cached": true,
    "credits_used": 123,
    "limit": 123,
    "offset": 123,
    "total": 123
  },
  "$schema": "<string>"
}

Query Parameters

id
string

Surf project UUID. PREFERRED — always use this when available from a previous response. Takes priority over symbol.

Example:

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

symbol
string

Token symbol like ARB, OP, or APT

Example:

"ARB"

from
string

Start of time range. Accepts Unix seconds (1704067200) or date string (2024-01-01)

Example:

"2024-01-01"

to
string

End of time range. Accepts Unix seconds (1735689600) or date string (2025-01-01)

Example:

"2025-01-01"

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