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.
# 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 | jqErrors follow { "error": { "_tag": "...", "message": "..." } } with standard status codes (400, 401, 404).
/v1/keysno authGenerate 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/v1/keysrequires x-api-keyUsage stats for the calling key (request count, last used).
curl -H "x-api-key: $KEY" https://openstocks.gg/v1/keys/v1/statsno authPublic summary stats: asset, variant, chain, and issuer counts.
curl https://openstocks.gg/v1/stats/v1/assetsrequires x-api-keyList and search assets with their full cross-chain variants.
| q | search by ticker, name, alias, or token address |
| category | equity | etf | pre-ipo |
| chain | filter to assets with a deployment on this chain (e.g. solana, bnb, base) |
| issuer | filter to assets from this issuer (e.g. backed, ondo, robinhood, dinari) |
| limit / offset | pagination (default 50, max 500) |
curl -H "x-api-key: $KEY" \
"https://openstocks.gg/v1/assets?issuer=ondo&chain=bnb&limit=10"/v1/assets/:assetIdrequires x-api-keyAsset 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/v1/assets/:assetId/variantsrequires x-api-keyJust 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"/v1/issuersrequires x-api-keyAll issuers with jurisdiction, redeemability, KYC model, and per-chain deployment counts.
curl -H "x-api-key: $KEY" https://openstocks.gg/v1/issuers/v1/issuers/:issuerIdrequires x-api-keyIssuer detail plus every asset it issues and where.
curl -H "x-api-key: $KEY" https://openstocks.gg/v1/issuers/backed/v1/chainsrequires x-api-keyAll chains with token standards, explorers, and per-issuer deployment counts.
curl -H "x-api-key: $KEY" https://openstocks.gg/v1/chains