Forex Rates API

The Rates API from Forex — 3 operation(s) for 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/forex-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 email required.

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

OpenAPI Specification

forex-rates-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Open Exchange Account Rates API
  version: 1.0.0
  description: Minimal OpenAPI description of the Open Exchange Rates JSON API for real-time and historical foreign exchange rates. The first API entry in the forex.apis.yml index.
  x-generated-from: https://docs.openexchangerates.org
  x-generated-by: claude-crawl-2026-05-08
servers:
- url: https://openexchangerates.org/api
security:
- appIdQuery: []
tags:
- name: Rates
paths:
  /latest.json:
    get:
      tags:
      - Rates
      summary: Get the latest exchange rates
      operationId: getLatestRates
      parameters:
      - in: query
        name: app_id
        required: true
        schema:
          type: string
      - in: query
        name: base
        schema:
          type: string
          default: USD
      - in: query
        name: symbols
        schema:
          type: string
      - in: query
        name: prettyprint
        schema:
          type: boolean
          default: false
      - in: query
        name: show_alternative
        schema:
          type: boolean
          default: false
      responses:
        '200':
          description: Latest rates
          content:
            application/json:
              schema:
                type: object
  /historical/{date}.json:
    get:
      tags:
      - Rates
      summary: Get historical exchange rates for a given date
      operationId: getHistoricalRates
      parameters:
      - in: path
        name: date
        required: true
        schema:
          type: string
          format: date
      - in: query
        name: app_id
        required: true
        schema:
          type: string
      - in: query
        name: base
        schema:
          type: string
      - in: query
        name: symbols
        schema:
          type: string
      responses:
        '200':
          description: Historical rates
          content:
            application/json:
              schema:
                type: object
  /convert/{value}/{from}/{to}:
    get:
      tags:
      - Rates
      summary: Convert an amount between two currencies
      operationId: convertCurrency
      parameters:
      - in: path
        name: value
        required: true
        schema:
          type: number
      - in: path
        name: from
        required: true
        schema:
          type: string
      - in: path
        name: to
        required: true
        schema:
          type: string
      - in: query
        name: app_id
        required: true
        schema:
          type: string
      - in: query
        name: prettyprint
        schema:
          type: boolean
      responses:
        '200':
          description: Conversion result
          content:
            application/json:
              schema:
                type: object
components:
  securitySchemes:
    appIdQuery:
      type: apiKey
      in: query
      name: app_id