Dream Sports Access Keys API

The AccessKeys API from Dream Sports — 1 operation(s) for accesskeys.

Operations 2

GET /accessKeys List all access keys for the user
POST /accessKeys Create a new access key

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-accesskeys-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-accesskeys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: DOTA Access Keys API
  version: 1.0.0
  description: API documentation for DOTA backend acquisition, management and authentication endpoints.
servers:
- url: http://localhost:3000
  description: Local server
security:
- BearerAuth: []
tags:
- name: AccessKeys
paths:
  /accessKeys:
    get:
      summary: List all access keys for the user
      responses:
        '200':
          description: List of access keys
          content:
            application/json:
              schema:
                type: object
                properties:
                  accessKeys:
                    type: array
                    items:
                      $ref: '#/components/schemas/AccessKey'
      tags:
      - AccessKeys
    post:
      summary: Create a new access key
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                name:
                  type: string
                description:
                  type: string
                ttl:
                  type: integer
      responses:
        '201':
          description: Created access key
          content:
            application/json:
              schema:
                type: object
                properties:
                  accessKey:
                    $ref: '#/components/schemas/AccessKey'
      tags:
      - AccessKeys
components:
  schemas:
    AccessKey:
      type: object
      properties:
        id:
          type: string
        name:
          type: string
        friendlyName:
          type: string
        description:
          type: string
        createdBy:
          type: string
        createdTime:
          type: integer
        expires:
          type: integer
        scope:
          type: string
  securitySchemes:
    BearerAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT