Rift Status API

Service and execution-provider health

Operations 2

GET /health Check Rift online status #
GET /providers Check execution provider online 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/rift-status-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

rift-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Rift Router Orders Status API
  version: v3-beta
  description: Rift is a decentralized exchange (DEX) aggregator that routes swap orders across 20+ venues and bridges to guarantee best-price execution with no added fees. This Router API exposes market quoting, market order creation, and health/provider status endpoints. Reconstructed faithfully from the published API reference at https://docs.rift.trade; the API is in beta.
  contact:
    name: Rift
    url: https://rift.trade
  x-apis-json-generated: '2026-07-21'
  x-apis-json-method: generated
  x-apis-json-source: https://docs.rift.trade/api
servers:
- url: https://router-gateway-v3-production.up.railway.app
  description: Production router gateway (v3, beta)
tags:
- name: Status
  description: Service and execution-provider health
paths:
  /health:
    get:
      operationId: checkRiftStatus
      summary: Check Rift online status
      description: Returns the online status of the Rift API. No authentication required.
      tags:
      - Status
      responses:
        '200':
          description: Service status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/HealthStatus'
  /providers:
    get:
      operationId: checkProviderStatus
      summary: Check execution provider online status
      description: Returns the reachability of each downstream execution provider / venue Rift routes through. No authentication required.
      tags:
      - Status
      responses:
        '200':
          description: Provider status
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ProviderStatus'
components:
  schemas:
    ProviderStatus:
      type: object
      required:
      - status
      - timestamp
      - dependencies
      properties:
        status:
          type: string
          enum:
          - ok
          - degraded
        timestamp:
          type: string
          format: date-time
        dependencies:
          type: array
          items:
            type: object
            properties:
              name:
                type: string
              status:
                type: string
                enum:
                - reachable
                - unreachable
              checkedAt:
                type: string
                format: date-time
      example:
        status: ok
        timestamp: '2026-05-04T12:00:00.000Z'
        dependencies:
        - name: hyperliquid_spot
          status: reachable
          checkedAt: '2026-05-04T12:00:00.000Z'
    HealthStatus:
      type: object
      required:
      - status
      - timestamp
      properties:
        status:
          type: string
          enum:
          - ok
        timestamp:
          type: string
          format: date-time
      example:
        status: ok
        timestamp: '2026-05-04T12:00:00.000Z'