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

# Get Series Detail

> A single series plus its events (keyset-paginated)

A single series by `slug` plus its events, with keyset pagination. The crypto up/down feature is a named series — e.g. `/series/btc-up-or-down-daily` returns the current Bitcoin up/down events.

| Parameter        | Value                                           |
| ---------------- | ----------------------------------------------- |
| `status`         | Filter the series' events by status.            |
| `limit`          | Number of events to return. 1–200 (default 50). |
| `pagination_key` | Cursor returned from the previous response.     |


## OpenAPI

````yaml GET /v2/polymarket/series/{slug}
openapi: 3.1.0
info:
  title: Predexon API
  description: Prediction market data aggregation and matching API
  version: 2.0.0
servers:
  - url: https://api.predexon.com
security:
  - apiKey: []
paths:
  /v2/polymarket/series/{slug}:
    get:
      tags:
        - polymarket
      summary: Get Series Detail
      description: >-
        A single series plus its events (keyset-paginated).


        The crypto up/down feature is just a named series — e.g.

        ``/series/btc-up-or-down-daily`` returns the current Bitcoin up/down
        events.
      operationId: get_series_detail_v2_polymarket_series__slug__get
      parameters:
        - name: slug
          in: path
          required: true
          schema:
            type: string
            title: Slug
        - name: status
          in: query
          required: false
          schema:
            anyOf:
              - $ref: '#/components/schemas/StatusOption'
              - type: 'null'
            description: Filter the series' events by status
            title: Status
          description: Filter the series' events by status
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            maximum: 200
            minimum: 1
            description: Number of events to return
            default: 50
            title: Limit
          description: Number of events to return
        - name: pagination_key
          in: query
          required: false
          schema:
            anyOf:
              - type: string
              - type: 'null'
            description: Cursor returned from the previous response
            title: Pagination Key
          description: Cursor returned from the previous response
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema: {}
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    StatusOption:
      type: string
      enum:
        - open
        - closed
      title: StatusOption
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
              - type: string
              - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
        - loc
        - msg
        - type
      title: ValidationError
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: x-api-key

````