OpenNode Rates API

Bitcoin exchange rates and supported currencies

Operations 2

GET /v1/rates Get Bitcoin exchange rates #
GET /v1/currencies List supported currencies #

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/opennode-rates-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

opennode-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: OpenNode Account Rates API
  description: 'OpenNode is a Bitcoin and Lightning Network payment processor providing a REST API for businesses and developers to accept Bitcoin payments, create payment charges, manage Lightning Network invoices, process on-chain transactions, handle webhooks for real-time payment notifications, initiate Bitcoin withdrawals and payouts, and access payment analytics. The platform supports automatic currency conversion at the time of payment, allowing merchants to settle in local currency or Bitcoin.

    '
  version: 1.0.0
  termsOfService: https://opennode.com/terms/
  contact:
    name: OpenNode Support
    url: https://opennode.com/
  license:
    name: Proprietary
servers:
- url: https://api.opennode.com
  description: Production server
- url: https://app.dev.opennode.com
  description: Development/sandbox server
security:
- ApiKeyAuth: []
tags:
- name: Rates
  description: Bitcoin exchange rates and supported currencies
paths:
  /v1/rates:
    get:
      operationId: getExchangeRates
      summary: Get Bitcoin exchange rates
      description: Returns real-time Bitcoin exchange rates across all supported fiat currencies.
      tags:
      - Rates
      responses:
        '200':
          description: Exchange rates
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ExchangeRatesResponse'
  /v1/currencies:
    get:
      operationId: getSupportedCurrencies
      summary: List supported currencies
      description: Returns all currencies supported by the OpenNode platform for payment conversion.
      tags:
      - Rates
      responses:
        '200':
          description: Supported currencies
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/CurrenciesResponse'
components:
  schemas:
    CurrenciesResponse:
      type: object
      properties:
        data:
          type: array
          items:
            type: object
            properties:
              code:
                type: string
                description: ISO 4217 currency code.
                example: USD
              name:
                type: string
                description: Full currency name.
                example: United States Dollar
              symbol:
                type: string
                description: Currency symbol.
                example: $
    ExchangeRatesResponse:
      type: object
      properties:
        data:
          type: object
          additionalProperties:
            type: object
            properties:
              BTC:
                type: number
                description: BTC equivalent value for the currency.
              EUR:
                type: number
              SATS:
                type: number
          description: Map of currency codes to their exchange rates.
          example:
            USD:
              BTC: 1.48e-05
              EUR: 0.91
              SATS: 1484
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: Authorization
      description: 'API key obtained from the OpenNode dashboard. Pass the key directly in the Authorization header (no "Bearer" prefix required).

        '