CrunchDAO competition:slice API

The competition:slice API from CrunchDAO — 4 operation(s) for competition:slice.

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-competition-slice-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

crunchdao-competition-slice-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Tournament activity competition:slice API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: competition:slice
paths:
  /v1/competitions/{competitionIdentifier}/slices:
    x-service-id: competition-service
    get:
      tags:
      - competition:slice
      operationId: listCompetitionSlices
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/Slice'
    post:
      tags:
      - competition:slice
      operationId: createCompetitionSlice
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SliceCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Slice'
      security:
      - accessToken: []
      - apiKey: []
  /v1/competitions/{competitionIdentifier}/slices/~/import/markdown:
    x-service-id: competition-service
    post:
      tags:
      - competition:slice
      operationId: importCompetitionSlicesFromMarkdown
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SliceMarkdownImportForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: integer
                format: int32
      security:
      - accessToken: []
      - apiKey: []
  /v1/competitions/{competitionIdentifier}/slices/~/import/gitbook:
    x-service-id: competition-service
    post:
      tags:
      - competition:slice
      operationId: importCompetitionSlicesFromGitBook
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SliceGitBookImportForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: integer
                format: int32
      security:
      - accessToken: []
      - apiKey: []
  /v1/competitions/{competitionIdentifier}/slices/{sliceName}:
    x-service-id: competition-service
    get:
      tags:
      - competition:slice
      operationId: getCompetitionSlice
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: sliceName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Slice'
    delete:
      tags:
      - competition:slice
      operationId: deleteCompetitionSlice
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: sliceName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      responses:
        '202':
          description: Accepted
      security:
      - accessToken: []
      - apiKey: []
    patch:
      tags:
      - competition:slice
      operationId: updateCompetitionSlice
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: sliceName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: locale
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - ENGLISH
          - CHINESE
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/SliceUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Slice'
      security:
      - accessToken: []
      - apiKey: []
components:
  schemas:
    SliceMarkdownImportForm:
      type: object
      properties:
        markdown:
          type: string
      required:
      - markdown
    SliceGitBookImportForm:
      type: object
      properties:
        url:
          type: string
        changeRequestNumber:
          type: integer
          format: int64
        titleLevel:
          type: string
          enum:
          - PRIMARY
          - SECONDARY
        append:
          type: boolean
      required:
      - append
      - titleLevel
      - url
    SliceCreateForm:
      type: object
      properties:
        name:
          type: string
        displayName:
          type: string
        type:
          type: string
          enum:
          - CONTENT
          - KEY_METRICS
          - TIMELINE
          - TEAM
        nativeConfiguration:
          type: string
        order:
          type: integer
          format: int64
      required:
      - name
      - nativeConfiguration
      - order
      - type
    Slice:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
          description: Slug-like name.
        displayName:
          type: string
          description: Display name/title for cards.
        type:
          $ref: '#/components/schemas/SliceType'
        nativeConfiguration:
          type: string
          description: Native frontend configuration for the chart.
        order:
          type: integer
          format: int64
          description: Page order.
        updatedAt:
          type: string
          format: date-time
        createdAt:
          type: string
          format: date-time
    SliceType:
      type: string
      enum:
      - CONTENT
      - KEY_METRICS
      - TIMELINE
      - TEAM
    SliceUpdateForm:
      type: object
      properties:
        name:
          type: string
        displayName:
          type: string
        type:
          type: string
          enum:
          - CONTENT
          - KEY_METRICS
          - TIMELINE
          - TEAM
        nativeConfiguration:
          type: string
        order:
          type: integer
          format: int64
  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