BitPay Rates API

Retrieve exchange rate data representing fiat currency equivalents per cryptocurrency unit.

Operations 3

GET /rates Get Exchange Rates #
GET /rates/{baseCurrency} Get Exchange Rates for a Base Currency #
GET /rates/{baseCurrency}/{quoteCurrency} Get Exchange Rate for Currency Pair #

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/bitpay-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

bitpay-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: BitPay Bills Rates API
  description: 'BitPay is a cryptocurrency payment processing platform offering REST APIs for accepting Bitcoin and altcoin payments, creating invoices, managing refunds, processing payouts, and accessing settlement and ledger data. BitPay handles cryptocurrency conversion and fiat settlement to bank accounts and crypto wallets.

    '
  version: 2.0.0
  contact:
    name: BitPay Support
    url: https://support.bitpay.com/hc/en-us
  termsOfService: https://www.bitpay.com/legal/terms-of-use
servers:
- url: https://bitpay.com
  description: Production server
- url: https://test.bitpay.com
  description: Test server
tags:
- name: Rates
  description: Retrieve exchange rate data representing fiat currency equivalents per cryptocurrency unit.
paths:
  /rates:
    get:
      operationId: getRates
      summary: Get Exchange Rates
      description: 'Retrieve exchange rate data representing fiat currency equivalents per cryptocurrency unit. Returns rates for all supported cryptocurrency and fiat currency pairs.

        '
      tags:
      - Rates
      responses:
        '200':
          description: Exchange rates data
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Rate'
  /rates/{baseCurrency}:
    get:
      operationId: getRatesForCurrency
      summary: Get Exchange Rates for a Base Currency
      description: 'Retrieve exchange rates for a specific base cryptocurrency against all supported fiat currencies.

        '
      tags:
      - Rates
      parameters:
      - name: baseCurrency
        in: path
        required: true
        schema:
          type: string
          enum:
          - BTC
          - ETH
          - BCH
          - XRP
          - DOGE
          - LTC
          - USDC
        description: The base cryptocurrency code (e.g., BTC, ETH).
      responses:
        '200':
          description: Exchange rates for the specified currency
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    type: array
                    items:
                      $ref: '#/components/schemas/Rate'
  /rates/{baseCurrency}/{quoteCurrency}:
    get:
      operationId: getRate
      summary: Get Exchange Rate for Currency Pair
      description: 'Retrieve the exchange rate for a specific cryptocurrency/fiat currency pair.

        '
      tags:
      - Rates
      parameters:
      - name: baseCurrency
        in: path
        required: true
        schema:
          type: string
        description: The base cryptocurrency code (e.g., BTC).
      - name: quoteCurrency
        in: path
        required: true
        schema:
          type: string
        description: The quote fiat currency code (e.g., USD).
      responses:
        '200':
          description: Exchange rate for the specified pair
          content:
            application/json:
              schema:
                type: object
                properties:
                  data:
                    $ref: '#/components/schemas/Rate'
components:
  schemas:
    Rate:
      type: object
      properties:
        name:
          type: string
          description: Full name of the currency (e.g., "US Dollar").
        code:
          type: string
          description: Currency code (e.g., "USD").
        rate:
          type: number
          description: Exchange rate (fiat units per one cryptocurrency unit).