CrunchDAO auth:api-key API

The auth:api-key API from CrunchDAO — 3 operation(s) for auth:api-key.

Operations 5

GET /v2/auth/api-keys List your API Keys. #
POST /v2/auth/api-keys Create an API Key. #
POST /v2/auth/api-keys/{apiKeyId}/regenerate Regenerate an API Key. #
GET /v2/auth/api-keys/{apiKeyId} Show an API Key. #
DELETE /v2/auth/api-keys/{apiKeyId} Delete an API 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/crunchdao-auth-api-key-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 form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

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

OpenAPI Specification

crunchdao-auth-api-key-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Auth:api Key API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: auth:api-key
paths:
  /v2/auth/api-keys:
    x-service-id: account-service
    get:
      tags:
      - auth:api-key
      summary: List your API Keys.
      operationId: list_1
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/ApiKey'
      security:
      - accessToken: []
      - apiKey: []
    post:
      tags:
      - auth:api-key
      summary: Create an API Key.
      operationId: create_1
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ApiKeyCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKey'
      security:
      - accessToken: []
      - apiKey: []
  /v2/auth/api-keys/{apiKeyId}/regenerate:
    x-service-id: account-service
    post:
      tags:
      - auth:api-key
      summary: Regenerate an API Key.
      operationId: refresh
      parameters:
      - name: apiKeyId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKey'
      security:
      - accessToken: []
      - apiKey: []
  /v2/auth/api-keys/{apiKeyId}:
    x-service-id: account-service
    get:
      tags:
      - auth:api-key
      summary: Show an API Key.
      operationId: show_4
      parameters:
      - name: apiKeyId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiKey'
      security:
      - accessToken: []
      - apiKey: []
    delete:
      tags:
      - auth:api-key
      summary: Delete an API Key.
      operationId: delete_1
      parameters:
      - name: apiKeyId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
      security:
      - accessToken: []
      - apiKey: []
components:
  schemas:
    ApiKey:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        description:
          type: string
        plain:
          type: string
        truncated:
          type: string
        legacy:
          type: boolean
        automated:
          type: boolean
        ranges:
          type: array
          items:
            type: string
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    ApiKeyCreateForm:
      type: object
      properties:
        name:
          type: string
          maxLength: 120
          minLength: 4
        description:
          type: string
          maxLength: 4096
          minLength: 0
        ranges:
          type: array
          items:
            type: string
      required:
      - name
      - ranges
  securitySchemes:
    apiKey:
      type: apiKey
      name: apiKey
      in: query
      scheme: token
    accessToken:
      type: http
      in: header
      scheme: Bearer
externalDocs:
  description: docs.crunchdao.com
  url: https://docs.crunchdao.com