Euronet Worldwide Tradable Rates API

Tradable rates API

Operations 1

GET /tradeable_rate get tradable rates #

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/euronet-tradable-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

euronet-tradable-rates-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: This is a simple API
  version: 1.0.0
  title: XE Currency Data Tradable Rates API
servers:
- url: https://virtserver.swaggerhub.com/XE.com/xecdapi-tradable/1.0.0
tags:
- name: tradable-rates
  description: Tradable rates API
paths:
  /tradeable_rate:
    get:
      tags:
      - tradable-rates
      summary: get tradable rates
      operationId: getTradableRate
      description: 'Get tradable rates

        '
      parameters:
      - in: query
        name: sell
        description: currency symbol (e.g. CAD) to be sold
        required: true
        schema:
          type: string
      - in: query
        name: buy
        description: currency symbol (e.g. USD) to be bought
        required: true
        schema:
          type: string
      - in: query
        name: amount
        description: amount of currencies to sell
        schema:
          type: number
          format: double64
          minimum: 0
      - in: query
        name: country
        description: country code (e.g. CA) where the client resides
        required: true
        schema:
          type: string
      - in: query
        name: account_type
        description: type of client account, either PRIVATE or CORPORATE
        required: true
        schema:
          type: string
      - in: query
        name: fixed_currency
        description: which currency for the amount parameter, either "sell" or "buy"
        required: false
        schema:
          type: string
      responses:
        '200':
          description: tradable rate for the specific currency
          content:
            application/json:
              schema:
                type: object
                items:
                  $ref: '#/components/schemas/TradableRatesResponse'
        '400':
          description: bad input parameter
        '403':
          description: no access to this endpoint
components:
  schemas:
    TradableRatesResponse:
      type: object
      required:
      - buyAmount
      - sellAmount
      - buy
      - sell
      - rate
      - fixedCurrency
      - terms
      - privacy
      properties:
        buyAmount:
          type: number
          format: double64
          example: 76.11
          description: amount of currency to be bought
        sellAmount:
          type: number
          format: double64
          example: 100
          description: amount of currency to be sold
        buy:
          type: string
          example: USD
          description: currency to be bought
        sell:
          type: string
          example: CAD
          description: currency to be sold
        rate:
          type: number
          example: 0.76108
          description: tradable exchange rate between buy and sell currencies
        fixedCurrency:
          type: string
          example: CAD
          description: currency for "amount" parameter