Forithmus timeline API

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

Operations 4

GET /challenges/{slug}/timeline List Timeline #
POST /challenges/{slug}/timeline Create Event #
PATCH /challenges/{slug}/timeline/{event_id} Update Event #
DELETE /challenges/{slug}/timeline/{event_id} Delete 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/forithmus-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

forithmus-timeline-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Forithmus Challenge Platform 2fa Timeline API
  version: 1.0.0
servers:
- url: https://research.forithmus.com/api
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: timeline
paths:
  /challenges/{slug}/timeline:
    get:
      tags:
      - timeline
      summary: List Timeline
      description: 'Return all timeline events: auto-generated from phases + custom events, sorted by date.'
      operationId: list_timeline_challenges__slug__timeline_get
      parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
          title: Slug
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/TimelineEventOut'
                title: Response List Timeline Challenges  Slug  Timeline Get
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    post:
      tags:
      - timeline
      summary: Create Event
      description: Create a custom timeline event. Admin only.
      operationId: create_event_challenges__slug__timeline_post
      parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
          title: Slug
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TimelineEventCreate'
      responses:
        '201':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineEventOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
  /challenges/{slug}/timeline/{event_id}:
    patch:
      tags:
      - timeline
      summary: Update Event
      description: 'Edit a custom timeline event. Admin only.

        Verifies the event belongs to the challenge identified by slug.'
      operationId: update_event_challenges__slug__timeline__event_id__patch
      parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
          title: Slug
      - name: event_id
        in: path
        required: true
        schema:
          type: string
          title: Event Id
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/TimelineEventUpdate'
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/TimelineEventOut'
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
    delete:
      tags:
      - timeline
      summary: Delete Event
      description: 'Delete a custom timeline event. Admin only.

        Verifies the event belongs to the challenge identified by slug.'
      operationId: delete_event_challenges__slug__timeline__event_id__delete
      parameters:
      - name: slug
        in: path
        required: true
        schema:
          type: string
          title: Slug
      - name: event_id
        in: path
        required: true
        schema:
          type: string
          title: Event Id
      responses:
        '204':
          description: Successful Response
        '422':
          description: Validation Error
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HTTPValidationError'
components:
  schemas:
    ValidationError:
      properties:
        loc:
          items:
            anyOf:
            - type: string
            - type: integer
          type: array
          title: Location
        msg:
          type: string
          title: Message
        type:
          type: string
          title: Error Type
      type: object
      required:
      - loc
      - msg
      - type
      title: ValidationError
    TimelineEventCreate:
      properties:
        title:
          type: string
          maxLength: 200
          minLength: 1
          title: Title
        description:
          type: string
          title: Description
          default: ''
        date:
          type: string
          format: date-time
          title: Date
        icon:
          type: string
          title: Icon
          default: event
      type: object
      required:
      - title
      - date
      title: TimelineEventCreate
    TimelineEventUpdate:
      properties:
        title:
          anyOf:
          - type: string
            maxLength: 200
          - type: 'null'
          title: Title
        description:
          anyOf:
          - type: string
          - type: 'null'
          title: Description
        date:
          anyOf:
          - type: string
            format: date-time
          - type: 'null'
          title: Date
        icon:
          anyOf:
          - type: string
          - type: 'null'
          title: Icon
      type: object
      title: TimelineEventUpdate
    HTTPValidationError:
      properties:
        detail:
          items:
            $ref: '#/components/schemas/ValidationError'
          type: array
          title: Detail
      type: object
      title: HTTPValidationError
    TimelineEventOut:
      properties:
        id:
          type: string
          format: uuid
          title: Id
        challenge_id:
          type: string
          format: uuid
          title: Challenge Id
        title:
          type: string
          title: Title
        description:
          type: string
          title: Description
        date:
          type: string
          format: date-time
          title: Date
        icon:
          type: string
          title: Icon
        is_auto:
          type: boolean
          title: Is Auto
          default: false
        created_at:
          type: string
          format: date-time
          title: Created At
      type: object
      required:
      - id
      - challenge_id
      - title
      - description
      - date
      - icon
      - created_at
      title: TimelineEventOut