Skip to main content
GET
/
v1
/
series
/
{seriesId}
Get Series
curl --request GET \
  --url https://api.convallax.com/v1/series/{seriesId}
{
  "success": true,
  "series": {
    "seriesId": "98765432109876543210",
    "conditionId": "0xa4ddc18895cc7b14810283ef8f113939abffd3969c6a0e37f1897110c67e6f73",
    "yesClobTokenId": "51508280778202349361616850684455231843716212176724253736363122559269229712002",
    "strikeBps": 50,
    "expiry": 1782864000,
    "optionType": "call",
    "settled": false,
    "resolutionBps": null
  }
}
Look up a single option series by its on-chain seriesId. Returns the series parameters (market, strike, expiry, type) and current settlement status. No authentication required — this is a public read endpoint. Do not send an X-API-Key header; it is neither required nor checked. The seriesId is a uint256 computed deterministically from keccak256(conditionId, yesClobTokenId, strikeBps, expiry, optionType). It doubles as the ERC-1155 token ID for option positions.

Path Parameters

seriesId
string
required

The series ID (uint256 as decimal string).

Example:

"98765432109876543210"

Response

Series details

success
boolean
series
object

An option series registered on ConvallaxCore.