API Reference
Versioned REST API at /api/v1 — 34 paths, 38 endpoints. Responses use a consistent envelope: { data } on success, { error: { code, message } } on failure.
Auth
Public endpoints work without auth. User-scoped endpoints require the session cookie set at login.
Rate limits
Limits are enforced per IP (public) or per account (Pro+ API). Exceeding returns 429 with Retry-After.
Demo data
All payloads are deterministic demo data with isDemo flags. Connect licensed providers to serve live data.
Endpoint reference
Machine-readable spec:
/globalGlobal market overview
/global/historyTotal market cap history
/currenciesCurrency directory
/currencies/{slug}Currency detail
/currencies/{slug}/historyPrice history
/currencies/{slug}/marketsTrading markets for an asset
/currencies/{slug}/unlocksToken unlock calendar
/currencies/{slug}/tokenomicsAllocations and vesting schedules
/funding-roundsFunding rounds
/funding-rounds/{id}Funding round detail
/fundsFunds & investors directory
/funds/{slug}Fund detail
/token-salesToken sales (ICO/IDO/IEO)
/launchpadsLaunchpads
/projectsProjects directory
/personsPeople directory
/newsNews articles
/searchGlobal search
/meCurrent user and entitlements
/watchlistsList watchlists
Create watchlist
/watchlist/toggleAdd/remove asset from default watchlist
/portfoliosList portfolios with computed snapshots
Create portfolio
/portfolios/assetsUpsert a portfolio position
/portfolios/transactionsLog a transaction
/portfolios/walletsTrack a public wallet address
/portfolios/{id}/historyEstimated portfolio value history
/alertsList alerts
Create alert
/alerts/evaluateEvaluate alerts against current market state
/compareList compare selections
Toggle asset in compare
/airdrops/progressUpdate airdrop task progress
/notificationsList notifications
/exportsCreate an export job (Pro+)
/exports/{id}/downloadDownload export as CSV
/subscribeChange plan (demo checkout)
Example
# Top 5 assets by market cap curl "/api/v1/currencies?sort=marketCap&order=desc&perPage=5" # Search curl "/api/v1/search?q=sol" # Funding rounds this year, seed stage, lead investor curl "/api/v1/funding-rounds?stage=seed&year=2026&leadOnly=1"
See About our data for sourcing and demo-mode notes.