Bridge Exchange Rates API

The Exchange Rates API from Bridge — 1 operation(s) for exchange rates.

Operations 1

GET /exchange_rates Get current exchange rate between two 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/bridge-exchange-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

bridge-exchange-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Bridge API Keys Exchange Rates API
  description: APIs to move into, out of, and between any form of a dollar
  version: '1'
servers:
- url: https://api.bridge.xyz/v0
  description: The base path for all resources
security:
- ApiKey: []
tags:
- name: Exchange Rates
paths:
  /exchange_rates:
    get:
      summary: Get current exchange rate between two currencies.
      description: "Returns the current exchange rate from the \"from\" currency to the \"to\" currency.\nThe exchange rate is updated roughly every 30s. Note that as of this writing,\nBridge does not offer a \"quote\" by which a user can lock in a rate for a given\namount of time. This is provided only as a courtesy to estimate what you are\nlikely to get in a subsequent transfer request that involves currency exchange.\n\nAs of March 2026, we support:\n  - `USD <> BRL`\n  - `USD <> COP`\n  - `USD <> EUR`\n  - `USD <> GBP`\n  - `USD <> MXN`\n  - `USD <> USDT`\n"
      tags:
      - Exchange Rates
      parameters:
      - in: query
        name: from
        required: true
        description: The currency code to convert from.
        example: usd
        schema:
          type: string
          enum:
          - brl
          - cop
          - eur
          - gbp
          - mxn
          - usd
          - usdt
      - in: query
        name: to
        required: true
        description: The currency code to convert to.
        example: eur
        schema:
          type: string
          enum:
          - brl
          - cop
          - eur
          - gbp
          - mxn
          - usd
          - usdt
      responses:
        '200':
          description: The exchange rate information.
          content:
            application/json:
              schema:
                type: object
                properties:
                  midmarket_rate:
                    type: string
                    example: '0.93425'
                    description: The midmarket exchange rate.
                  buy_rate:
                    type: string
                    example: '0.9389'
                    description: The rate for buying the target currency, including Bridge's fee.
                  sell_rate:
                    type: string
                    example: '0.9296'
                    description: The rate for selling the target currency, including Bridge's fee.
                  updated_at:
                    type: string
                    format: date-time
                    example: '2026-01-15T12:00:00.000Z'
                    description: The timestamp when the exchange rate was last collected from the market data provider.
components:
  securitySchemes:
    ApiKey:
      type: apiKey
      name: Api-Key
      in: header