CrunchDAO project:token API

The project:token API from CrunchDAO — 4 operation(s) for project:token.

Operations 4

POST /v3/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/tokens Create a temporary project token. #
POST /v2/project-tokens/upgrade Upgrade a temporary project token to a permanent token. #
GET /v4/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/clone Clone a project. #
GET /v3/competitions/{competitionIdentifier}/projects/{userLogin}/clone Clone a project. #

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-project-token-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-project-token-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Project:token API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: project:token
paths:
  /v3/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/tokens:
    x-service-id: competition-service
    post:
      tags:
      - project:token
      summary: Create a temporary project token.
      operationId: createProjectToken
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: userLogin
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: projectIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectTokenUpgradeForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectToken'
  /v2/project-tokens/upgrade:
    x-service-id: competition-service
    post:
      tags:
      - project:token
      summary: Upgrade a temporary project token to a permanent token.
      operationId: upgradeProjectToken
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ProjectTokenUpgradeForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProjectToken'
  /v4/competitions/{competitionIdentifier}/projects/{userLogin}/{projectIdentifier}/clone:
    x-service-id: competition-service
    get:
      tags:
      - project:token
      summary: Clone a project.
      operationId: cloneProjectV4
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: userLogin
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: projectIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: pushToken
        in: query
        required: true
        style: form
        explode: true
        schema:
          type: string
      - name: submissionNumber
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: integer
          format: int64
      - name: includeModel
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
                  format: uri
  /v3/competitions/{competitionIdentifier}/projects/{userLogin}/clone:
    x-service-id: competition-service
    get:
      tags:
      - project:token
      summary: Clone a project.
      operationId: cloneProjectV3
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: userLogin
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: pushToken
        in: query
        required: true
        style: form
        explode: true
        schema:
          type: string
      - name: submissionNumber
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: integer
          format: int64
      - name: includeModel
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: boolean
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                type: object
                additionalProperties:
                  type: string
                  format: uri
      deprecated: true
components:
  schemas:
    User:
      type: object
      properties:
        id:
          type: integer
          format: int64
        login:
          type: string
    ProjectTokenType:
      type: string
      enum:
      - TEMPORARY
      - PERMANENT
    ProjectToken:
      type: object
      properties:
        id:
          type: integer
          format: int64
        project:
          $ref: '#/components/schemas/Project'
        plain:
          type: string
        type:
          $ref: '#/components/schemas/ProjectTokenType'
        createdAt:
          type: string
          format: date-time
        validUntil:
          type: string
          format: date-time
        lastUsedAt:
          type: string
          format: date-time
    Project:
      type: object
      properties:
        id:
          type: integer
          format: int64
        competitionId:
          type: integer
          format: int64
        user:
          $ref: '#/components/schemas/User'
        name:
          type: string
        selected:
          type: boolean
        submitted:
          type: boolean
        note:
          type: string
        writeupUrl:
          type: string
        writeupArchived:
          type: boolean
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
        userId:
          type: integer
          format: int64
          deprecated: true
    ProjectTokenUpgradeForm:
      type: object
      properties:
        cloneToken:
          type: 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