Dream Sports Filters API

APIs for retrieving filter values used in the admin UI. Provides available options for tags, teams, statuses, behaviour tags, and creators.

Operations 1

GET /thunder/filters Get Filters #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/dream-sports-filters-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

dream-sports-filters-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Thunder Admin - Management endpoints
  title: Thunder Admin Filters API
  version: 1.0.0
servers:
- url: http://localhost:8081
  description: Thunder Admin Server (Management endpoints)
tags:
- name: Filters
  description: APIs for retrieving filter values used in the admin UI. Provides available options for tags, teams, statuses, behaviour tags, and creators.
paths:
  /thunder/filters:
    get:
      summary: Get Filters
      description: Retrieves available filter values for CTAs including tags, teams, statuses, behaviour tags, and creators. Used to populate filter dropdowns in the admin UI.
      operationId: getFilters
      tags:
      - Filters
      parameters:
      - description: Tenant identifier
        example: tenant1
        name: x-tenant-id
        required: false
        in: header
        schema:
          type: string
          default: default
      responses:
        '200':
          description: Filter values retrieved successfully
          content:
            application/json:
              examples:
                Filters Response:
                  summary: Available filter values
                  value:
                    success: true
                    data:
                      names:
                      - Welcome Bonus
                      - Testing1
                      tags:
                      - growth
                      - notifications
                      - promotion
                      teams:
                      - marketing
                      - growth
                      - default
                      createdBy:
                      - admin@example.com
                      statuses:
                      - DRAFT
                      - SCHEDULED
                      - LIVE
                      - PAUSED
                      - CONCLUDED
                      - TERMINATED
                    statusCode: 200
              schema:
                $ref: '#/components/schemas/FilterResponse'
components:
  schemas:
    FilterResponse:
      type: object
      properties:
        names:
          type: array
          items:
            type: string
        tags:
          type: array
          items:
            type: string
        teams:
          type: array
          items:
            type: string
        createdBy:
          type: array
          items:
            type: string