free · no credit card

API reference.

Everything you need to read tokenized-stock signals from Wood Terminal. The API is free — always. Grab a key on the keys page and start querying.

basics

Base URL

All requests are made against a single base URL. Set NEXT_PUBLIC_API_URL in this site's environment to point the /keys page at your deployment.

base url
https://api.woodterminal.com
authentication

Bearer token auth

Every request except POST /v1/keys and GET /v1/tokens requires your API key as a Bearer token in the Authorization header.

header
Authorization: Bearer wood_live_your_free_key
limits

Rate limits

Free forever, with fair-use limits so the tape stays fast for everyone.

LimitValue
Requests per key60 requests / minute
Key creation5 keys / IP / day
POST/v1/keys

Creates a new free API key. No authentication required. Save the key value — it is only returned once.

Request

curl -X POST https://api.woodterminal.com/v1/keys \
  -H "Content-Type: application/json" \
  -d '{"label":"my-trading-agent"}'

Response · 201

response · json · 201● ok
{
  "id": "key_9f2a1c",
  "key": "wood_live_8f3d9a2b1e4c...",
  "key_preview": "wood_live_8f3d...c",
  "label": "my-trading-agent",
  "rateLimit": { "requestsPerMinute": 60 },
  "createdAt": "2026-07-11T09:12:03.000Z"
}
GET/v1/tokens

Lists every tokenized stock Wood Terminal tracks on Robinhood Chain. No authentication required.

Request

curl https://api.woodterminal.com/v1/tokens

Response · 200

response · json · 200● ok
{
  "chain": "robinhood-chain",
  "chainId": 4663,
  "count": 12,
  "tokens": [
    { "symbol": "NVDA", "name": "Nvidia", "basePrice": 174.32, "hasFeed": true },
    { "symbol": "AAPL", "name": "Apple", "basePrice": 258.10, "hasFeed": true }
  ]
}
GET/v1/signal/:symbol

Returns price, signal and oracle reference for one tokenized stock. Requires a Bearer API key.

Request

curl https://api.woodterminal.com/v1/signal/NVDA \
  -H "Authorization: Bearer wood_live_your_free_key"

Response · 200

response · json · 200● ok
{
  "token": "NVDA",
  "name": "Nvidia",
  "chain": "robinhood-chain",
  "chainId": 4663,
  "price": 174.32,
  "currency": "USD",
  "signal": "bullish",
  "confidence": 0.78,
  "source": "chainlink",
  "market": "open · 24/7",
  "updatedAt": "2026-07-11T09:12:03.000Z"
}
error format

Errors

All errors share the same shape, with an HTTP status code matching error.code.

response · json · 4xx/5xx
{
  "error": {
    "code": "invalid_token",
    "message": "Unknown symbol 'XYZ'."
  }
}
StatusCodeMeaning
400invalid_requestMalformed request body or params.
401unauthorizedMissing or invalid API key.
404invalid_tokenUnknown or unsupported symbol.
429rate_limitedToo many requests — back off and retry.
500internal_errorSomething went wrong on our end.
coverage

Supported tokens

Tokenized stocks currently tracked on Robinhood Chain (chain ID 4663). Call GET /v1/tokens for the live, authoritative list.

NVDANvidia
AAPLApple
TSLATesla
MSFTMicrosoft
GOOGLAlphabet
AMZNAmazon
METAMeta
COINCoinbase
PLTRPalantir
AMDAMD
HOODRobinhood
SPYS&P 500

Free forever, no credit card. Questions or feedback — reach out at @woodterminal.