OpenStocks

Assets API

One API for every tokenized stock across every blockchain and issuer. Generate a free key and pass it as the x-api-key header.

Quickstart
# 1. Get a key KEY=$(curl -s -X POST https://openstocks.gg/v1/keys | jq -r .key) # 2. Find every NVIDIA token on every chain curl -s -H "x-api-key: $KEY" https://openstocks.gg/v1/assets/nvidia | jq

Errors follow { "error": { "_tag": "...", "message": "..." } } with standard status codes (400, 401, 404).

POST/v1/keysno auth

Generate a new API key. Optional JSON body: { "label": "my app" }. The key is returned once.

curl -X POST -H "Content-Type: application/json" \ -d '{"label":"my app"}' https://openstocks.gg/v1/keys
GET/v1/keysrequires x-api-key

Usage stats for the calling key (request count, last used).

curl -H "x-api-key: $KEY" https://openstocks.gg/v1/keys
GET/v1/statsno auth

Public summary stats: asset, variant, chain, and issuer counts.

curl https://openstocks.gg/v1/stats
GET/v1/assetsrequires x-api-key

List and search assets with their full cross-chain variants.

qsearch by ticker, name, alias, or token address
categoryequity | etf | pre-ipo
chainfilter to assets with a deployment on this chain (e.g. solana, bnb, base)
issuerfilter to assets from this issuer (e.g. backed, ondo, robinhood, dinari)
limit / offsetpagination (default 50, max 500)
curl -H "x-api-key: $KEY" \ "https://openstocks.gg/v1/assets?issuer=ondo&chain=bnb&limit=10"
GET/v1/assets/:assetIdrequires x-api-key

Asset detail by slug, ticker, or alias — e.g. /v1/assets/nvidia or /v1/assets/NVDA.

curl -H "x-api-key: $KEY" https://openstocks.gg/v1/assets/nvidia
GET/v1/assets/:assetId/variantsrequires x-api-key

Just the token deployments for an asset, filterable by ?chain= and ?issuer=.

curl -H "x-api-key: $KEY" \ "https://openstocks.gg/v1/assets/tesla/variants?chain=solana"
GET/v1/issuersrequires x-api-key

All issuers with jurisdiction, redeemability, KYC model, and per-chain deployment counts.

curl -H "x-api-key: $KEY" https://openstocks.gg/v1/issuers
GET/v1/issuers/:issuerIdrequires x-api-key

Issuer detail plus every asset it issues and where.

curl -H "x-api-key: $KEY" https://openstocks.gg/v1/issuers/backed
GET/v1/chainsrequires x-api-key

All chains with token standards, explorers, and per-issuer deployment counts.

curl -H "x-api-key: $KEY" https://openstocks.gg/v1/chains