curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/series{
"series": [
{
"ticker": "<string>",
"frequency": "<string>",
"title": "<string>",
"category": "<string>",
"tags": [
"<string>"
],
"settlement_sources": [
{
"name": "<string>",
"url": "<string>"
}
],
"contract_url": "<string>",
"contract_terms_url": "<string>",
"fee_type": "quadratic",
"fee_multiplier": 123,
"additional_prohibitions": [
"<string>"
],
"product_metadata": {}
}
]
}Endpoint for getting data about multiple series with specified filters. A series represents a template for recurring events that follow the same format and rules (e.g., “Monthly Jobs Report”, “Weekly Initial Jobless Claims”, “Daily Weather in NYC”). This endpoint allows you to browse and discover available series templates by category.
curl --request GET \
--url https://api.elections.kalshi.com/trade-api/v2/series{
"series": [
{
"ticker": "<string>",
"frequency": "<string>",
"title": "<string>",
"category": "<string>",
"tags": [
"<string>"
],
"settlement_sources": [
{
"name": "<string>",
"url": "<string>"
}
],
"contract_url": "<string>",
"contract_terms_url": "<string>",
"fee_type": "quadratic",
"fee_multiplier": 123,
"additional_prohibitions": [
"<string>"
],
"product_metadata": {}
}
]
}Series list retrieved successfully
Show child attributes
Ticker that identifies this series.
Description of the frequency of the series. There is no fixed value set here, but will be something human-readable like weekly, daily, one-off.
Title describing the series. For full context use you should use this field with the title field of the events belonging to this series.
Category specifies the category which this series belongs to.
Tags specifies the subjects that this series relates to, multiple series from different categories can have the same tags.
ContractUrl provides a direct link to the original filing of the contract which underlies the series.
ContractTermsUrl is the URL to the current terms of the contract underlying the series.
FeeType is a string representing the series' fee structure. Fee structures can be found at https://kalshi.com/docs/kalshi-fee-schedule.pdf. 'quadratic' is described by the General Trading Fees Table, 'quadratic_with_maker_fees' is described by the General Trading Fees Table with maker fees described in the Maker Fees section, 'flat' is described by the Specific Trading Fees Table.
quadratic, quadratic_with_maker_fees, flat FeeMultiplier is a floating point multiplier applied to the fee calculations.
AdditionalProhibitions is a list of additional trading prohibitions for this series.
Internal product metadata of the series.