Skip to main content

Developer quickstart

Build and Backtest with the most trusted & comprehensive Tokenomics 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