CrunchDAO timeline API

The timeline API from CrunchDAO — 2 operation(s) for timeline.

Operations 5

GET /v2/competitions/{competitionIdentifier}/timeline/events List a timeline events. #
POST /v2/competitions/{competitionIdentifier}/timeline/events Create a timeline event. #
GET /v2/competitions/{competitionIdentifier}/timeline/events/{eventId} Show a timeline event. #
DELETE /v2/competitions/{competitionIdentifier}/timeline/events/{eventId} Delete a timeline event. #
PATCH /v2/competitions/{competitionIdentifier}/timeline/events/{eventId} Update a timeline event. #

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-timeline-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-timeline-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Tournament activity Timeline API
  description: CrunchDAO Tournament Platform API Endpoints
  version: v2
servers:
- url: http://api.hub.crunchdao.com
  description: Generated server url
security: []
tags:
- name: timeline
paths:
  /v2/competitions/{competitionIdentifier}/timeline/events:
    x-service-id: competition-service
    get:
      tags:
      - timeline
      summary: List a timeline events.
      operationId: listCompetitionTimelineEvents
      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/TimelineEvent'
    post:
      tags:
      - timeline
      summary: Create a timeline event.
      operationId: createCompetitionTimelineEvent
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TimelineEventCreateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineEvent'
  /v2/competitions/{competitionIdentifier}/timeline/events/{eventId}:
    x-service-id: competition-service
    get:
      tags:
      - timeline
      summary: Show a timeline event.
      operationId: getCompetitionTimelineEvent
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineEvent'
    delete:
      tags:
      - timeline
      summary: Delete a timeline event.
      operationId: deleteCompetitionTimelineEvent
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      responses:
        '202':
          description: Accepted
    patch:
      tags:
      - timeline
      summary: Update a timeline event.
      operationId: updateCompetitionTimelineEvent
      parameters:
      - name: competitionIdentifier
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: string
      - name: eventId
        in: path
        required: true
        style: simple
        explode: false
        schema:
          type: integer
          format: int64
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TimelineEventUpdateForm'
        required: true
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineEvent'
components:
  schemas:
    TimelineEvent:
      type: object
      properties:
        id:
          type: integer
          format: int64
        type:
          $ref: '#/components/schemas/TimelineEventType'
        title:
          type: string
        description:
          type: string
        date:
          type: string
          format: date
          description: Date on which the event will occur/has occurred.
        color:
          type: string
        detailed:
          type: boolean
          description: Detailed event should be hidden in a space constrained UI.
        button:
          $ref: '#/components/schemas/TimelineEventButton'
        createdAt:
          type: string
          format: date-time
        updatedAt:
          type: string
          format: date-time
    TimelineEventType:
      type: string
      enum:
      - GENERIC
      - LEADERBOARD
      - RULES
      - REWARDS
    TimelineEventCreateForm:
      type: object
      properties:
        type:
          type: string
          enum:
          - GENERIC
          - LEADERBOARD
          - RULES
          - REWARDS
        title:
          type: string
        description:
          type: string
        date:
          type: string
          format: date
        color:
          type: string
        detailed:
          type: boolean
        button:
          $ref: '#/components/schemas/TimelineEventButtonCreateForm'
      required:
      - date
      - detailed
      - title
      - type
    TimelineEventButtonPatchForm:
      type: object
      properties:
        text:
          type: string
        link:
          type: string
        color:
          type: string
    TimelineEventUpdateForm:
      type: object
      properties:
        type:
          type: string
          enum:
          - GENERIC
          - LEADERBOARD
          - RULES
          - REWARDS
        title:
          type: string
        description:
          type: string
        date:
          type: string
          format: date
        color:
          type: string
        detailed:
          type: boolean
        button:
          $ref: '#/components/schemas/TimelineEventButtonPatchForm'
    TimelineEventButtonCreateForm:
      type: object
      properties:
        text:
          type: string
        link:
          type: string
        color:
          type: string
      required:
      - link
      - text
    TimelineEventButton:
      type: object
      properties:
        text:
          type: string
        link:
          type: string
        color:
          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