[DEMO]Demo dataset — deterministic sample data (v2026.09, as of 2026-09-04). Values are not live prices and not financial advice. Connect licensed data providers to go live.

SYSTEM OPERATIONAL

API Reference

Versioned REST API at /api/v134 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:

openapi.json ↗
/global
get

Global market overview

/global/history
get

Total market cap history

/currencies
get

Currency directory

/currencies/{slug}
get

Currency detail

/currencies/{slug}/history
get

Price history

/currencies/{slug}/markets
get

Trading markets for an asset

/currencies/{slug}/unlocks
get

Token unlock calendar

/currencies/{slug}/tokenomics
get

Allocations and vesting schedules

/funding-rounds
get

Funding rounds

/funding-rounds/{id}
get

Funding round detail

/funds
get

Funds & investors directory

/funds/{slug}
get

Fund detail

/token-sales
get

Token sales (ICO/IDO/IEO)

/launchpads
get

Launchpads

/projects
get

Projects directory

/persons
get

People directory

/news
get

News articles

/search
get

Global search

/me
get

Current user and entitlements

/watchlists
getpost

List watchlists

Create watchlist

/watchlist/toggle
post

Add/remove asset from default watchlist

/portfolios
getpost

List portfolios with computed snapshots

Create portfolio

/portfolios/assets
post

Upsert a portfolio position

/portfolios/transactions
post

Log a transaction

/portfolios/wallets
post

Track a public wallet address

/portfolios/{id}/history
get

Estimated portfolio value history

/alerts
getpost

List alerts

Create alert

/alerts/evaluate
post

Evaluate alerts against current market state

/compare
getpost

List compare selections

Toggle asset in compare

/airdrops/progress
post

Update airdrop task progress

/notifications
get

List notifications

/exports
post

Create an export job (Pro+)

/exports/{id}/download
get

Download export as CSV

/subscribe
post

Change 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.