Skip to main content
GET
/
v1
/
crypto
/
unlock-events
Get Token Unlock Events
curl --request GET \
  --url https://data-tools.prd.arrays.org/api/v1/crypto/unlock-events \
  --header 'X-API-Key: <api-key>'
{
  "data": [
    {
      "cliff_unlocks": {
        "allocation_breakdown": [
          {
            "allocation_name": "<string>",
            "cliff_amount": 123,
            "cliff_value": 123,
            "reference_price": 123,
            "reference_price_updated_time": "<string>",
            "standard_allocation_name": "<string>",
            "unlock_date": "<string>",
            "unlock_precision": "<string>"
          }
        ],
        "cliff_amount": 123,
        "cliff_value": 123,
        "value_to_market_cap": 123
      },
      "data_source": "<string>",
      "latest_update_date": "<string>",
      "linear_unlocks": {
        "allocation_breakdown": [
          {
            "allocation_name": "<string>",
            "cliff_amount": 123,
            "cliff_value": 123,
            "reference_price": 123,
            "reference_price_updated_time": "<string>",
            "standard_allocation_name": "<string>",
            "unlock_date": "<string>",
            "unlock_precision": "<string>"
          }
        ],
        "linear_amount": 123,
        "linear_value": 123,
        "value_to_market_cap": 123
      },
      "listed_method": "<string>",
      "token_name": "<string>",
      "token_symbol": "<string>",
      "unlock_date": "<string>"
    }
  ],
  "error": {
    "code": "RESOURCE_NOT_FOUND",
    "details": [
      {
        "field": "<string>",
        "got": "<string>",
        "reason": "<string>"
      }
    ],
    "docs_url": "<string>",
    "examples": [
      "<string>"
    ],
    "hint": "<string>",
    "message": "The requested resource was not found.",
    "suggestions": [
      "<string>"
    ]
  },
  "pagination": "<unknown>",
  "request_id": "<string>",
  "success": true
}

Authorizations

X-API-Key
string
header
required

API Key authentication. Example: "your-api-key-here"

Query Parameters

token_id
string
required

Token identifier (e.g., arbitrum, optimism, sui)

start
string

Start date (YYYY-MM-DD format)

end
string

End date (YYYY-MM-DD format)

Response

Successfully retrieved unlock events

data
object[]
error
object
pagination
any
request_id
string
success
boolean