B3

B3 Token Price Cexes API

The Token Price Cexes API from B3 — 2 operation(s) for token price cexes.

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/b3-token-price-cexes-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 email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

b3-token-price-cexes-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  description: Workflow management API for B3OS
  title: B3OS Workflow Action Token Price Cexes API
  version: '1.0'
tags:
- name: Token Price Cexes
paths:
  /v1/token-price-cexes/available-assets:
    get:
      description: Get available assets for token price (CEXes)
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AvailableAssetsTokenPriceCexesSuccessResponse'
          description: OK
      tags:
      - Token Price Cexes
  /v1/token-price-cexes/latest:
    get:
      description: Get latest prices for specified assets
      parameters:
      - description: Comma-separated list of assets
        in: query
        name: assets
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/LatestPricesTokenPriceCexesSuccessResponse'
          description: OK
      tags:
      - Token Price Cexes
components:
  schemas:
    github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_types.StorkLatestPricesResponse:
      properties:
        prices:
          additionalProperties:
            type: string
          description: '{"BTCUSD": "103594.842425999988"}'
          type: object
      type: object
    LatestPricesTokenPriceCexesSuccessResponse:
      properties:
        code:
          example: 0
          type: integer
        data:
          $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_types.StorkLatestPricesResponse'
        message:
          example: successfully
          type: string
        requestId:
          example: abc-123
          type: string
      type: object
    github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_types.StorkAvailableAssetsResponse:
      properties:
        assets:
          items:
            type: string
          type: array
          uniqueItems: false
      type: object
    AvailableAssetsTokenPriceCexesSuccessResponse:
      properties:
        code:
          example: 0
          type: integer
        data:
          $ref: '#/components/schemas/github_com_b3-fun_b3-mono_services_b3os-workflow_internal_app_api_types.StorkAvailableAssetsResponse'
        message:
          example: successfully
          type: string
        requestId:
          example: abc-123
          type: string
      type: object