Skip to main content

Developer quickstart

Make your first API request in minutes. Explore token unlocks, emissions, buybacks, burns, and supply dynamics with the Tokenomist platform and API.

Get started

import requests

url = "https://api.unlocks.app/v4/token/list"
headers = {"x-api-key": "YOUR_API_KEY"}

response = requests.get(url, headers=headers)
tokens = response.json()["data"]

for token in tokens[:5]:
    print(token["name"], token["circulatingSupply"])

Resources