Skip to main content
GET
/
v1
/
markets
/
lookup
Lookup Markets
curl --request GET \
  --url https://api.rivermarkets.com/v1/markets/lookup \
  --header 'X-River-Key-Id: <api-key>' \
  --header 'X-River-Signature: <api-key>' \
  --header 'X-River-Timestamp: <api-key>'
{
  "results": [
    {
      "river_id": 123,
      "exchange_value": 123,
      "exchange_name": "<string>",
      "tick_size_price": 123,
      "tick_size_qty": 123,
      "minimum_order_size": 123,
      "neg_risk": true,
      "name": "<string>",
      "ticker": "<string>",
      "token_id_yes": "<string>",
      "token_id_no": "<string>",
      "slug": "<string>",
      "tick_structure": "uniform",
      "expiration_datetime": "<string>",
      "start_datetime": "<string>",
      "neg_risk_id": "<string>",
      "condition_id": "<string>",
      "subtitle": "<string>",
      "description": "<string>",
      "category": "Other",
      "subcategory": "<string>",
      "rank": 123,
      "event_ticker": "<string>",
      "event_title": "<string>",
      "volume": 123,
      "volume_24h": 123,
      "series_ticker": "<string>",
      "image": "<string>",
      "primary_entity_name": "<string>"
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.rivermarkets.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

X-River-Key-Id
string
header
required

UUID of your API key (from Settings → API Keys).

X-River-Timestamp
string
header
required

Current unix seconds. Must be within 30s of server time.

X-River-Signature
string
header
required

Base64 Ed25519 signature over the canonical request: METHOD\nPATH\nSORTED_QUERY\nTIMESTAMP\nSHA256(body) hex. See /api-reference/authentication for the full recipe.

Query Parameters

river_ids
string
required

Comma-separated list of river IDs

Response

Successful Response

Schema for batch market lookup response.

results
MarketSearchResult · object[]
required