CrunchDAO export API

The export API from CrunchDAO — 3 operation(s) for export.

Operations 3

GET /v2/competitions/{competitionIdentifier}/export/submissions Export all submissions as CSV. #
GET /v2/competitions/{competitionIdentifier}/export/runs Export all runs as CSV. #
GET /v2/competitions/{competitionIdentifier}/export/predictions Export all predictions as CSV. #

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-export-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-export-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Export API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: export
paths:
  /v2/competitions/{competitionIdentifier}/export/submissions:
    x-service-id: competition-service
    get:
      tags:
      - export
      summary: Export all submissions as CSV.
      operationId: exportSubmissions
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/SubmissionCsvEntry'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/export/runs:
    x-service-id: competition-service
    get:
      tags:
      - export
      summary: Export all runs as CSV.
      operationId: exportRuns
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/RunCsvEntry'
      security:
      - accessToken: []
      - apiKey: []
  /v2/competitions/{competitionIdentifier}/export/predictions:
    x-service-id: competition-service
    get:
      tags:
      - export
      summary: Export all predictions as CSV.
      operationId: exportPredictions
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: roundIdentifier
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
          default: INSTANCE
      - name: includeFileUri
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            text/csv:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/PredictionCsvEntry'
      security:
      - accessToken: []
      - apiKey: []
components:
  schemas:
    PredictionCsvEntry:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        userId:
          type: integer
          format: int64
        userLogin:
          type: string
        projectId:
          type: integer
          format: int64
        projectName:
          type: string
        teamId:
          type: integer
          format: int64
        teamName:
          type: string
        runId:
          type: integer
          format: int64
        submissionId:
          type: integer
          format: int64
        valid:
          type: boolean
        success:
          type: boolean
        error:
          type: string
        deterministic:
          type: boolean
        createdAt:
          type: string
          format: date-time
        fileName:
          type: string
        fileSize:
          type: integer
          format: int64
        fileUri:
          type: string
          format: uri
    RunCsvEntry:
      type: object
      properties:
        id:
          type: integer
          format: int64
        roundNumber:
          type: integer
          format: int64
        crunchNumber:
          type: integer
          format: int64
        userId:
          type: integer
          format: int64
        userLogin:
          type: string
        projectId:
          type: integer
          format: int64
        projectName:
          type: string
        teamId:
          type: integer
          format: int64
        teamName:
          type: string
        submissionId:
          type: integer
          format: int64
        initialModelId:
          type: integer
          format: int64
        initialModelTotalSize:
          type: integer
          format: int64
        terminalModelId:
          type: integer
          format: int64
        terminalModelTotalSize:
          type: integer
          format: int64
        predictionId:
          type: integer
          format: int64
        predictionValid:
          type: boolean
        predictionSuccess:
          type: boolean
        predictionError:
          type: string
        predictionCreatedAt:
          type: string
          format: date-time
        runtimeDefinitionName:
          type: string
        runtimeType:
          type: string
        trainFrequency:
          type: integer
          format: int64
        forceFirstTrain:
          type: boolean
        status:
          type: string
        errorMessage:
          type: string
        exitCode:
          type: integer
          format: int32
        exitReason:
          type: string
        success:
          type: boolean
        terminated:
          type: boolean
        managed:
          type: boolean
        createdAt:
          type: string
          format: date-time
        startedAt:
          type: string
          format: date-time
        endedAt:
          type: string
          format: date-time
        duration:
          anyOf:
          - $comment: Seconds
            example: '60'
          - format: duration
            $anchor: https://en.wikipedia.org/wiki/ISO_week_date
            $comment: ISO 8601 Duration
            example: PT1M
        timeout:
          anyOf:
          - $comment: Seconds
            example: '60'
          - format: duration
            $anchor: https://en.wikipedia.org/wiki/ISO_week_date
            $comment: ISO 8601 Duration
            example: PT1M
        cpu:
          type: integer
          format: int32
        memory:
          type: integer
          format: int32
    SubmissionCsvEntry:
      type: object
      properties:
        id:
          type: integer
          format: int64
        number:
          type: integer
          format: int64
        userId:
          type: integer
          format: int64
        userLogin:
          type: string
        projectId:
          type: integer
          format: int64
        projectName:
          type: string
        teamId:
          type: integer
          format: int64
        teamName:
          type: string
        gpuRequirement:
          type: string
        totalSize:
          type: integer
          format: int64
        modelId:
          type: integer
          format: int64
        modelTotalSize:
          type: integer
          format: int64
        createdAt:
          type: string
          format: date-time
  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