CrunchDAO data API

The data API from CrunchDAO — 5 operation(s) for data.

Operations 6

GET /v2/competitions/{competitionIdentifier}/data-releases List data releases. #
POST /v2/competitions/{competitionIdentifier}/data-releases Create a data releases. #
POST /v2/competitions/{competitionIdentifier}/data-releases/{dataReleaseNumber}/resolve/{targetName} Resolve a data release's Y. #
GET /v2/competitions/{competitionIdentifier}/rounds/{roundIdentifier}/phases/submission/data-release Get a run's data release. #
GET /v1/competitions/{competitionIdentifier}/data-releases List data releases. #
GET /v1/competitions/{competitionIdentifier}/data-releases/{dataReleaseNumber} Show a data releases. #

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-data-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-data-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Data API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: data
paths:
  /v2/competitions/{competitionIdentifier}/data-releases:
    x-service-id: competition-service
    get:
      tags:
      - data
      summary: List data releases.
      operationId: listDataReleases
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: page
        in: query
        description: Zero-based page index (0..N)
        required: false
        style: form
        explode: true
        schema:
          type: integer
          default: 0
          minimum: 0
      - name: size
        in: query
        description: The size of the page to be returned
        required: false
        style: form
        explode: true
        schema:
          type: integer
          default: 20
          minimum: 1
      - name: sort
        in: query
        description: 'Sorting criteria in the format: property,(asc|desc). Default sort order is ascending. Multiple sort criteria are supported.'
        required: false
        style: form
        explode: true
        schema:
          type: array
          items:
            type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageDataRelease'
      security:
      - accessToken: []
      - apiKey: []
    post:
      tags:
      - data
      summary: Create a data releases.
      operationId: createDataRelease
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataReleaseCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataRelease'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/data-releases/{dataReleaseNumber}/resolve/{targetName}:
    x-service-id: competition-service
    post:
      tags:
      - data
      summary: Resolve a data release's Y.
      operationId: resolveDataRelease
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: dataReleaseNumber
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      - name: targetName
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/DataReleaseResolveForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataRelease'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/rounds/{roundIdentifier}/phases/submission/data-release:
    x-service-id: competition-service
    get:
      tags:
      - data
      summary: Get a run's data release.
      operationId: getPhaseDataRelease
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: roundIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: withoutFiles
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: boolean
      - name: pushToken
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
      - name: sizeVariant
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - DEFAULT
          - SMALL
          - LARGE
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataRelease'
      security:
      - accessToken: []
      - apiKey: []
  /v1/competitions/{competitionIdentifier}/data-releases:
    x-service-id: competition-service
    get:
      tags:
      - data
      summary: List data releases.
      operationId: listDataReleases_1
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/DataRelease'
      deprecated: true
      security:
      - accessToken: []
      - apiKey: []
  /v1/competitions/{competitionIdentifier}/data-releases/{dataReleaseNumber}:
    x-service-id: competition-service
    get:
      tags:
      - data
      summary: Show a data releases.
      operationId: getDataRelease
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: dataReleaseNumber
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      - name: includeSplits
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: boolean
      - name: sizeVariant
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - DEFAULT
          - SMALL
          - LARGE
      - name: accessLocation
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          enum:
          - LOCAL
          - RUNNER
          - CHECKING
          - SCORING
          - COMPARING
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DataRelease'
      security:
      - accessToken: []
      - apiKey: []
components:
  schemas:
    DataReleaseFileCreateForm:
      type: object
      properties:
        uploadId:
          type: string
          format: uuid
        sizeVariant:
          type: string
          enum:
          - DEFAULT
          - SMALL
          - LARGE
        name:
          type: string
        description:
          type: string
        access:
          $ref: '#/components/schemas/DataReleaseFileAccess'
        compressed:
          type: boolean
      required:
      - access
      - compressed
      - name
      - sizeVariant
      - uploadId
    DataReleaseTargetResolution:
      type: string
      enum:
      - ALREADY
      - PENDING
      - RESOLVED
    DataRelease:
      type: object
      properties:
        id:
          type: integer
          format: int64
        number:
          type: integer
          format: int64
        name:
          type: string
        custom:
          type: boolean
        sized:
          type: boolean
        hasSmallVariant:
          type: boolean
        hasLargeVariant:
          type: boolean
        embargo:
          type: integer
          format: int32
        numberOfFeatures:
          type: integer
          format: int32
        hash:
          type: string
        splitKeyType:
          $ref: '#/components/schemas/DataReleaseSplitKey'
        resolvable:
          type: boolean
        splits:
          type: array
          items:
            $ref: '#/components/schemas/DataReleaseSplit'
        targetResolution:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/DataReleaseTargetResolution'
        createdAt:
          type: string
          format: date-time
        dataFiles:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/DataFile'
    DataReleaseFileResolveForm:
      type: object
      properties:
        uploadId:
          type: string
          format: uuid
        name:
          type: string
        access:
          $ref: '#/components/schemas/DataReleaseFileAccess'
        compressed:
          type: boolean
      required:
      - access
      - compressed
      - name
      - uploadId
    DataReleaseSplit:
      type: object
      properties:
        key:
          type: object
          anyOf:
          - type: integer
            format: int64
          - type: string
          example: 1
        group:
          $ref: '#/components/schemas/DataReleaseSplitGroup'
        reduced:
          $ref: '#/components/schemas/DataReleaseSplitReduced'
    DataReleaseCreateForm:
      type: object
      properties:
        name:
          type: string
        embargo:
          type: integer
          format: int32
        numberOfFeatures:
          type: integer
          format: int32
        hash:
          type: string
        splits:
          type: array
          items:
            $ref: '#/components/schemas/DataReleaseSplitCreateForm'
        files:
          type: array
          items:
            $ref: '#/components/schemas/DataReleaseFileCreateForm'
        resolvable:
          type: boolean
      required:
      - files
      - name
      - resolvable
      - splits
    DataReleaseResolveForm:
      type: object
      properties:
        files:
          type: array
          items:
            $ref: '#/components/schemas/DataReleaseFileResolveForm'
      required:
      - files
    DataFile:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        url:
          type: string
        size:
          type: integer
          format: int64
        signed:
          type: boolean
        compressed:
          type: boolean
    DataReleaseSplitCreateForm:
      type: object
      properties:
        key:
          type: object
          anyOf:
          - type: integer
            format: int64
          - type: string
          example: 1
        group:
          type: string
          enum:
          - TRAIN
          - TEST
        reduced:
          type: string
          enum:
          - X
          - XY
      required:
      - group
      - key
    DataReleaseSplitReduced:
      type: string
      enum:
      - X
      - XY
    PageDataRelease:
      type: object
      properties:
        pageNumber:
          type: integer
          format: int64
        pageSize:
          type: integer
          format: int64
        totalElements:
          type: integer
          format: int64
        totalPages:
          type: integer
          format: int64
        content:
          type: array
          items:
            $ref: '#/components/schemas/DataRelease'
    DataReleaseFileAccess:
      type: object
      properties:
        local:
          type: boolean
        runner:
          type: boolean
        checking:
          type: boolean
        scoring:
          type: boolean
        comparing:
          type: boolean
    DataReleaseSplitGroup:
      type: string
      enum:
      - TRAIN
      - TEST
    DataReleaseSplitKey:
      type: string
      enum:
      - INTEGER
      - STRING
  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