Bakkt Partner Connectivity API
The Partner Connectivity API from Bakkt — 2 operation(s) for partner connectivity.
The Partner Connectivity API from Bakkt — 2 operation(s) for partner connectivity.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/bakkt-partner-connectivity-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: Bakkt Crypto Solutions Partner Connectivity 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:
- name: Partner Connectivity
paths:
/partner/v1/oauth2/token:
post:
tags:
- Partner Connectivity
summary: Generate Access Token
description: Generate Access Token which is used to access Bakkt APIs
operationId: generateAccessToken
parameters:
- name: Authorization
in: header
required: true
schema:
type: string
- name: grant_type
in: query
required: false
schema:
type: string
responses:
'200':
description: OK
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/PartnerTokenResponse'
'400':
description: Bad Request
content:
'*/*':
schema:
$ref: '#/components/schemas/PublicApiError'
/partner/v1/heartbeat:
post:
tags:
- Partner Connectivity
summary: Check connectivity with Bakkt backend
description: This endpoint is meant to be access for development only
operationId: heartbeat
requestBody:
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/HeartBeatRequest'
required: true
responses:
'200':
description: OK
content:
application/json;charset=UTF-8:
schema:
$ref: '#/components/schemas/HeartBeatResponse'
'400':
description: Bad Request
content:
'*/*':
schema:
$ref: '#/components/schemas/PublicApiError'
components:
schemas:
HeartBeatResponse:
required:
- result
type: object
properties:
requestId:
type: string
description: Unique key used by check Bakkt connectivity, copy from request requestId
example: 123e4567-e89b-12d3-a456-426614174000
result:
type: string
description: Phrase attesting bakkt created the ping response
example: 'PONG: heartbeat received'
PartnerTokenResponse:
type: object
properties:
accessToken:
type: string
description: A standard JWT access token
example: eyJhbGciOiJSUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6Ii1xR1ZoVXdOMjc5a3NqNEoySnFXSWk2RDNQcyJ9.eyJhdWQiOiI3NTFkZjg0Yi0wZWU3LTQ2MWQtYThiZi0yMGQ2MTY1OTY2Y2EiLCJleHAiOjE2MTk1ODE3OTAsImlhdCI6MTYxOTU3ODE5MCwiaXNzIjoiaHR0cHM6Ly9pZC5kZXYuYmFra3QuY29tLyIsInN1YiI6ImE1NDNhMjE1LTg2M2QtNGFlMS1hYTZmLWIyYzEzNDczYmYzYyIsImp0aSI6ImZlMTY2OTc4LTJjODUtNGU2Zi05NDFkLTJjOTYyYmZkZjYwOSIsImF1dGhlbnRpY2F0aW9uVHlwZSI6IlBBU1NXT1JEIiwicHJlZmVycmVkX3VzZXJuYW1lIjoiZmRkMmNlYjktZjI0NS00ZWZiLTg3OTgtMGI0MTU1NjcyNGMzIiwiYXBwbGljYXRpb25JZCI6Ijc1MWRmODRiLTBlZTctNDYxZC1hOGJmLTIwZDYxNjU5NjZjYSIsInJvbGVzIjpbImJha2t0X21lcmNoYW50Il0sImJwSWQiOjQzNTY3MX0.NQgIPKNGqZfWqRHAaaBCHsWTEvhPv2g9MRtbnOqgMjaz8rHQQaor3dAcwozKSuw9VoE6JKMRP2ftigNhnqVyJUUxzAULm2MT8e7UOtCuVHld4TRjpAFJW-0qkeLMmag9nxZMFthqsiJFqrDI4BHfOF2t4TbIOEwfRKq42iQkIDNTzFzn34k_fVBBqcxQsBAOK7vea0LqO39lzNE1o2DLeJ5erqnCEwi05-zZR4zO0Es25eHpuwA3L1Qf-YRBGXm4ELxenUilEWRQJForVx2qTOGPIUapPzbpTmdxMwNEJUeYcTY9T_u5MZEf1GsE8rodRpuBneRoCGfpjkv6095Exg
expiresIn:
type: string
description: How long the token will last in seconds
example: '3667'
tokenType:
type: string
description: The token type that was generated
example: Bearer
HeartBeatRequest:
type: object
properties:
requestId:
type: string
description: Unique key used by check Bakkt connectivity
example: 123e4567-e89b-12d3-a456-426614174000
PublicApiError:
type: object
properties:
description:
type: string
description: Message from the exception
example: Parameter passed for field is not meeting its required format.
detail:
type: string
description: Description of the type
example: validation error
details:
type: array
items:
$ref: '#/components/schemas/PublicApiErrorDetail'
type:
type: string
example: INVALID_FIELD_VALUE
PublicApiErrorDetail:
type: object
properties:
description:
type: string
description: Human readable error description
example: Validation Error.
field:
type: string
example: id
rejectedValue:
type: object
example: i-am-not-a-uuid
type:
type: string
example: VALIDATION_ERROR