> For the complete documentation index, see [llms.txt](https://docs.strikelabs.app/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.strikelabs.app/api-reference/series-ids.md).

# Series IDs

Every option contract has one canonical name:

```
{SYMBOL}-{EXPIRY_TS}-{RIGHT}-{STRIKE}
```

```
NVDA-1786492800-C-221
│    │          │ │
│    │          │ └── strike, 221
│    │          └──── right: C call, P put
│    └───────────────  expiry, unix seconds (UTC)
└────────────────────  underlying
```

A `seriesId` is what you pass to [`/v1/order`](/api-reference/exchange.md#place-an-order) and [`/v1/book`](/api-reference/info.md#book), and what comes back on fills, positions and prints. It is stable for the life of the contract.

## Strikes

The strike is written without trailing zeros: `221`, not `221.0`. Half strikes appear as `222.5`. Strike spacing varies by underlying price — dollar increments on cheaper names, wider on expensive ones.

## sid

Alongside `seriesId`, listing responses carry a `sid`: a small integer alias.

```json
{ "seriesId": "NVDA-1786492800-C-221", "sid": 259 }
```

`sid` exists for the maker's binary wire, where four bytes beat a twenty-character string across tens of thousands of rows per second. It is assigned when a series is listed and is **stable only for the lifetime of a venue process** — a restart may renumber. Never persist a `sid`; persist the `seriesId` and re-resolve.

## Discovering series

[`/v1/series?symbol=NVDA`](/api-reference/info.md#series) returns every live series for a symbol. Settled and expired contracts are filtered out, so what you get back is what you can trade.

Expect a large response: a symbol with daily, weekly and monthly expiries across a full strike ladder carries well over a thousand series. Group by `expiryTs` to build an expiry picker, then call [`/v1/chain`](/api-reference/info.md#chain) for the one expiry you want to display.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.strikelabs.app/api-reference/series-ids.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
