Dream Sports Public Keys API

The Public Keys API from Dream Sports — 1 operation(s) for public keys.

Operations 1

GET /v1/certs Get JWKS public keys for the tenant

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-public-keys-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-public-keys-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Guardian Public Keys API
  version: 1.0.0
servers:
- url: https://auth.dream11.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Public Keys
paths:
  /v1/certs:
    get:
      tags:
      - Public Keys
      summary: Get JWKS public keys for the tenant
      description: 'Returns the list of public keys (in JWKS format) associated with the tenant.

        These keys are used for verifying tokens issued by the Guardian service.

        '
      parameters:
      - $ref: '#/components/parameters/TenantIdHeader'
      responses:
        '200':
          description: JSON Web Key Set (JWKS) retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  keys:
                    type: array
                    items:
                      $ref: '#/components/schemas/JsonWebKey'
        '400':
          description: Bad Request - Invalid tenant-id header
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '500':
          description: Internal Server Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
components:
  schemas:
    ErrorResponse:
      type: object
      properties:
        error:
          type: object
          properties:
            code:
              type: string
              description: Error code identifying the type of error
              example: invalid_request
            message:
              type: string
              description: Human-readable error message
              example: Something went wrong.
    JsonWebKey:
      type: object
      required:
      - kty
      - kid
      - alg
      - n
      - e
      properties:
        kty:
          type: string
          description: Key type
          example: RSA
        use:
          type: string
          description: Key usage
          example: sig
        kid:
          type: string
          description: Key ID for identifying the key
          example: 1234567890abcdef
        alg:
          type: string
          description: Algorithm used with the key
          example: RS256
        n:
          type: string
          format: base64url
          description: Modulus of the RSA public key
          example: sXchD_VNjp6WbGLOqK2IcmhA9xyPK...
        e:
          type: string
          format: base64url
          description: Exponent of the RSA public key
          example: AQAB
  parameters:
    TenantIdHeader:
      name: tenant-id
      in: header
      description: tenant-id of the client integrating with guardian
      required: true
      schema:
        type: string