Bakkt Configuration and Status API

Client systems can use these resources to provide a connection to the platform's services and check API status.

Operations 2

GET /apex-crypto/api/status Check the Health of the API Gateway #
GET /apex-crypto/api/v2/config Get Client Connection Configurations #

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/bakkt-configuration-and-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

bakkt-configuration-and-status-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bakkt Crypto Solutions Configuration and Status API
  version: '2.0'
  description: The Bakkt Crypto Solutions API is a REST-based API that provides a platform for clients, so their investors can purchase, hold, sell, and transfer digital assets.
  termsOfService: https://bakkt.com/user-agreement
  contact:
    name: Bakkt User Account Agreement
    url: https://bakkt.com/user-agreement
servers:
- url: https://api.bakkt.com
  description: Bakkt API gateway (dedicated per-client, IP-whitelisted; base paths /apex-crypto/api/v2 and /partner/v1)
tags:
- description: Client systems can use these resources to provide a connection to the platform's services and check API status.
  name: Configuration and Status
paths:
  /apex-crypto/api/status:
    get:
      description: This endpoint provides an easy way to ensure the dedicated API Gateway is online and ready to service requests.
      operationId: getApiStatus
      responses:
        '200':
          description: If the API is in a good state, this call returns the text "ok."
          content:
            application/json:
              schema:
                type: string
        default:
          description: If this request encounters an issue, the system provides an error code and message.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      summary: Check the Health of the API Gateway
      tags:
      - Configuration and Status
  /apex-crypto/api/v2/config:
    get:
      description: Use this endpoint to get various configuration items for client systems to receive a flow of market data and coin transfers updates during and after processing.
      operationId: getConfig
      responses:
        '200':
          description: This response returns the WebSocket URLs to track market data and transfers.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ConfigResponse'
        '401':
          description: This response returns if the system encounters an unexpected error while handling this request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
        default:
          description: This response returns if the system encounters an unexpected error while handling this request.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Error'
      security:
      - api_key: []
      summary: Get Client Connection Configurations
      tags:
      - Configuration and Status
components:
  schemas:
    ConfigResponse:
      properties:
        streamingQuoteUrl:
          type: string
          x-order: 0
    Error:
      properties:
        code:
          description: This code represents an HTTP style error code. Error codes in the 4xx range indicate errors made in the way the client made the request. Error codes in the 5xx range indicate errors that the Apex Crypto system encountered in handling the request.
          format: int32
          type: integer
        message:
          description: This error message provides additional insight into the nature of the error encountered.
          type: string
      required:
      - code
      - message
      type: object