Forum Exchange API

Exchange status and server time

Operations 2

GET /time Get server time #
GET /exchange/status Get exchange status #

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/forum-exchange-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

forum-exchange-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Forum Account Exchange API
  version: '1.0'
  description: 'The Forum API provides programmatic access to the Forum perpetual futures exchange.

    Trade attention-based perpetual futures, access real-time market data, and manage your account.


    ## Base URL


    All endpoints are relative to `https://api.forum.market/v1`.


    ## Authentication


    Public endpoints (market data, exchange status) require no authentication.

    Private endpoints (orders, positions, account) require HMAC-SHA256 signed requests.


    See the [Authentication](/api-reference/authentication) guide for details.

    '
  contact:
    name: Forum Support
    email: contact@forum.market
    url: https://forum.market
  termsOfService: https://forum-legal.s3.us-east-2.amazonaws.com/terms-of-service.pdf
servers:
- url: https://api.forum.market/v1
  description: Production
security:
- ForumAccessKey: []
  ForumAccessTimestamp: []
  ForumAccessSign: []
tags:
- name: Exchange
  description: Exchange status and server time
paths:
  /time:
    get:
      operationId: getServerTime
      summary: Get server time
      description: Returns the current server time. Use this to measure clock skew for HMAC signature generation.
      tags:
      - Exchange
      security: []
      responses:
        '200':
          description: Server time
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ServerTime'
        '429':
          $ref: '#/components/responses/RateLimited'
  /exchange/status:
    get:
      operationId: getExchangeStatus
      summary: Get exchange status
      description: Returns the current exchange operational status and maintenance windows.
      tags:
      - Exchange
      security: []
      responses:
        '200':
          description: Exchange status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeStatus'
        '429':
          $ref: '#/components/responses/RateLimited'
components:
  responses:
    RateLimited:
      description: Rate limit exceeded
      headers:
        Retry-After:
          schema:
            type: integer
          description: Seconds to wait before retrying
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ErrorResponse'
          example:
            error:
              code: RATE_LIMIT_EXCEEDED
              message: Rate limit exceeded. Try again in 5 seconds.
  schemas:
    ExchangeStatus:
      type: object
      required:
      - inMaintenance
      properties:
        inMaintenance:
          type: boolean
          description: Whether the exchange is currently in maintenance mode
          example: false
        currentWindow:
          oneOf:
          - $ref: '#/components/schemas/MaintenanceWindow'
          - type: 'null'
          description: Current maintenance window, if active
        nextWindow:
          oneOf:
          - $ref: '#/components/schemas/MaintenanceWindow'
          - type: 'null'
          description: Next scheduled maintenance window
    ErrorResponse:
      type: object
      required:
      - error
      properties:
        error:
          type: object
          required:
          - code
          - message
          properties:
            code:
              type: string
              description: Machine-readable error code
              example: INVALID_PARAMETER
            message:
              type: string
              description: Human-readable error message
              example: Request validation failed
            details:
              type: object
              description: Additional error details
              example:
                fields:
                - field: ticker
                  message: Required
    MaintenanceWindow:
      type: object
      required:
      - declaredAt
      - startTime
      - endTime
      properties:
        declaredAt:
          type: string
          format: date-time
          example: '2026-02-24T12:00:00.000Z'
        startTime:
          type: string
          format: date-time
          example: '2026-02-25T00:00:00.000Z'
        endTime:
          type: string
          format: date-time
          example: '2026-02-25T02:00:00.000Z'
        reason:
          type:
          - string
          - 'null'
          example: Scheduled maintenance
    ServerTime:
      type: object
      required:
      - epoch
      - iso
      properties:
        epoch:
          type: integer
          description: Unix timestamp in seconds
          example: 1740441600
        iso:
          type: string
          format: date-time
          description: ISO 8601 timestamp
          example: '2026-02-25T00:00:00.000Z'
  securitySchemes:
    ForumAccessKey:
      type: apiKey
      in: header
      name: FORUM-ACCESS-KEY
      description: Your API key ID (e.g. `fk_a1b2c3d4e5f6...`)
    ForumAccessTimestamp:
      type: apiKey
      in: header
      name: FORUM-ACCESS-TIMESTAMP
      description: Unix epoch in seconds (UTC), as a string
    ForumAccessSign:
      type: apiKey
      in: header
      name: FORUM-ACCESS-SIGN
      description: 'Base64-encoded HMAC-SHA256 signature.


        **Signature generation:**

        ```

        prehash = timestamp + method + requestPath + body

        signature = Base64(HMAC-SHA256(secret, prehash))

        ```

        '