CrunchDAO organizer:application API

The organizer:application API from CrunchDAO — 2 operation(s) for organizer:application.

Operations 4

GET /v1/organizer-applications List organizer applications. #
POST /v1/organizer-applications Create an organizer application. #
GET /v1/organizer-applications/{organizerApplicationId} Get an organizer application. #
PATCH /v1/organizer-applications/{organizerApplicationId} Update an organizer application. #

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-organizer-application-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-organizer-application-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Organizer:application API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: organizer:application
paths:
  /v1/organizer-applications:
    x-service-id: competition-service
    get:
      tags:
      - organizer:application
      summary: List organizer applications.
      operationId: listOrganizerApplications
      parameters:
      - name: reviewStatus
        in: query
        description: Filter applications with specific review status.
        required: false
        style: form
        explode: true
        schema:
          $ref: '#/components/schemas/OrganizerApplicationReviewStatus'
          description: Filter applications with specific review status.
      - name: potentialSpam
        in: query
        description: Filter applications with that are potential spam.
        required: false
        style: form
        explode: true
        schema:
          type: boolean
          description: Filter applications with that are potential spam.
      - name: sort
        in: query
        description: Sort applications.
        required: false
        style: form
        explode: true
        schema:
          type: string
          description: Sort applications.
          enum:
          - RECENT
          - OLDEST
      - 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
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PageOrganizerApplication'
      security:
      - accessToken: []
      - apiKey: []
    post:
      tags:
      - organizer:application
      summary: Create an organizer application.
      operationId: createOrganizerApplication
      parameters:
      - name: reCaptchaResponse
        in: query
        required: false
        style: form
        explode: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizerApplicationCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizerApplication'
  /v1/organizer-applications/{organizerApplicationId}:
    x-service-id: competition-service
    get:
      tags:
      - organizer:application
      summary: Get an organizer application.
      operationId: getOrganizerApplication
      parameters:
      - name: organizerApplicationId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizerApplication'
      security:
      - accessToken: []
      - apiKey: []
    patch:
      tags:
      - organizer:application
      summary: Update an organizer application.
      operationId: updateOrganizerApplication
      parameters:
      - name: organizerApplicationId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/OrganizerApplicationUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OrganizerApplication'
      security:
      - accessToken: []
      - apiKey: []
components:
  schemas:
    OrganizerApplicationReviewStatus:
      type: string
      enum:
      - PENDING
      - APPROVED
      - REJECTED
    PageOrganizerApplication:
      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/OrganizerApplication'
    OrganizerApplicationUpdateForm:
      type: object
      properties:
        reviewStatus:
          type: string
          enum:
          - PENDING
          - APPROVED
          - REJECTED
        potentialSpam:
          type: boolean
    OrganizerApplicationCreateForm:
      type: object
      properties:
        name:
          type: string
          maxLength: 65536
          minLength: 0
        email:
          type: string
          maxLength: 65536
          minLength: 0
        discordUsername:
          type: string
          maxLength: 65536
          minLength: 0
        projectName:
          type: string
          maxLength: 65536
          minLength: 0
        goal:
          type: string
          maxLength: 65536
          minLength: 0
        evaluationMethod:
          type: string
          maxLength: 65536
          minLength: 0
        dataSources:
          type: string
          maxLength: 65536
          minLength: 0
        payoutStructure:
          type: string
          maxLength: 65536
          minLength: 0
        timeline:
          type: string
          maxLength: 65536
          minLength: 0
    OrganizerApplication:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string
        email:
          type: string
        discordUsername:
          type: string
        projectName:
          type: string
        goal:
          type: string
        evaluationMethod:
          type: string
        dataSources:
          type: string
        payoutStructure:
          type: string
        timeline:
          type: string
        reviewStatus:
          $ref: '#/components/schemas/OrganizerApplicationReviewStatus'
        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