> ## Documentation Index
> Fetch the complete documentation index at: https://pond.dflow.net/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Series

> API reference for GET /api/v1/series



## OpenAPI

````yaml GET /api/v1/series
openapi: 3.1.0
info:
  title: prediction-markets-api
  description: API for prediction markets
  license:
    name: ''
  version: 0.1.0
servers:
  - url: https://dev-prediction-markets-api.dflow.net
security:
  - api_key: []
tags:
  - name: Candlesticks
    description: Market and event candlesticks relay endpoints
  - name: Events
    description: Event management endpoints
  - name: Markets
    description: Market management endpoints
  - name: Trades
    description: Trade history endpoints
  - name: Series
    description: Series template endpoints
  - name: Tags
    description: Tag and category endpoints
  - name: Sports
    description: Sports filtering endpoints
  - name: Live Data
    description: Live data relay endpoints
  - name: Orderbook
    description: Orderbook endpoints
  - name: Search
    description: Full-text search endpoints
paths:
  /api/v1/series:
    get:
      tags:
        - Series
      summary: Get list of series
      description: |-
        Returns all series templates available on Kalshi. A series represents a
        template for recurring events.
      operationId: series
      parameters:
        - name: category
          in: query
          description: Filter series by category (e.g., Politics, Economics, Entertainment)
          required: false
          schema:
            type: string
        - name: tags
          in: query
          description: Filter series by tags (comma-separated list)
          required: false
          schema:
            type: string
        - name: isInitialized
          in: query
          description: >-
            Filter series that are initialized (have a corresponding market
            ledger)
          required: false
          schema:
            type: boolean
        - name: status
          in: query
          description: >-
            Filter series by market status. Available options: initialized,
            active,

            inactive, closed, determined
          required: false
          schema:
            type: string
      responses:
        '200':
          description: List of series
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/SeriesListResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    SeriesListResponse:
      type: object
      required:
        - series
      properties:
        series:
          type: array
          items:
            $ref: '#/components/schemas/SeriesResponse'
    ErrorResponse:
      type: object
      required:
        - msg
        - code
      properties:
        code:
          type: string
        msg:
          type: string
    SeriesResponse:
      type: object
      required:
        - ticker
        - frequency
        - title
        - category
        - tags
        - settlementSources
        - contractUrl
        - contractTermsUrl
        - productMetadata
        - feeType
        - feeMultiplier
        - additionalProhibitions
      properties:
        additionalProhibitions:
          type: array
          items:
            type: string
        category:
          type: string
        contractTermsUrl:
          type: string
        contractUrl:
          type: string
        feeMultiplier:
          type: number
          format: double
        feeType:
          type: string
        frequency:
          type: string
        productMetadata: {}
        settlementSources:
          type: array
          items:
            $ref: '#/components/schemas/SeriesSettlementSourceResponse'
        tags:
          type: array
          items:
            type: string
        ticker:
          type: string
        title:
          type: string
    SeriesSettlementSourceResponse:
      type: object
      required:
        - name
        - url
      properties:
        name:
          type: string
        url:
          type: string
  securitySchemes:
    api_key:
      type: apiKey
      in: header
      name: x-api-key
      description: >-
        API key for authentication. Contact hello@dflow.net to obtain an API
        key.

````