CurrencyBeacon currencies API
Supported currencies information
Supported currencies information
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/currencybeacon-currencies-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
title: CurrencyBeacon conversion Currencies API
description: REST API for real-time and historical currency exchange rates covering 170+ fiat currencies and cryptocurrencies. Sourced from central banks and trusted financial institutions with 30 years of historical data, server-side conversion, timeseries analysis, and 99.99% uptime.
version: '1'
termsOfService: https://currencybeacon.com/terms
contact:
name: CurrencyBeacon Support
email: info@currencybeacon.com
url: https://currencybeacon.com
license:
name: Proprietary
url: https://currencybeacon.com/terms
servers:
- url: https://api.currencybeacon.com/v1
description: Production API
security:
- ApiKeyQuery: []
- BearerAuth: []
tags:
- name: currencies
description: Supported currencies information
paths:
/currencies:
get:
operationId: getSupportedCurrencies
summary: List supported currencies
description: Returns a list of all currencies supported by the CurrencyBeacon API, including fiat currencies and cryptocurrencies, with their names, symbols, and ISO codes.
tags:
- currencies
security:
- ApiKeyQuery: []
- BearerAuth: []
responses:
'200':
description: Successful response with list of supported currencies
content:
application/json:
schema:
$ref: '#/components/schemas/CurrenciesResponse'
example:
meta:
code: 200
disclaimer: Usage subject to terms
currencies:
- short_code: USD
name: United States Dollar
symbol: $
precision: 2
subunit: 100
subunit_to_unit: 100
isCrypto: false
- short_code: EUR
name: Euro
symbol: €
precision: 2
subunit: 100
subunit_to_unit: 100
isCrypto: false
- short_code: BTC
name: Bitcoin
symbol: ₿
precision: 8
subunit: 100000000
subunit_to_unit: 100000000
isCrypto: true
'401':
$ref: '#/components/responses/Unauthorized'
'429':
$ref: '#/components/responses/TooManyRequests'
5XX:
$ref: '#/components/responses/ServerError'
components:
schemas:
CurrencyInfo:
type: object
description: Information about a single supported currency
properties:
short_code:
type: string
description: ISO 4217 currency code or crypto ticker
example: USD
name:
type: string
description: Full name of the currency
example: United States Dollar
symbol:
type: string
description: Currency symbol
example: $
precision:
type: integer
description: Number of decimal places
example: 2
subunit:
type: integer
description: Number of subunits in one unit
example: 100
subunit_to_unit:
type: integer
description: Subunit to unit conversion factor
example: 100
isCrypto:
type: boolean
description: Whether the currency is a cryptocurrency
example: false
CurrenciesResponse:
type: object
description: Response for supported currencies list
properties:
meta:
$ref: '#/components/schemas/Meta'
currencies:
type: array
description: List of supported currencies
items:
$ref: '#/components/schemas/CurrencyInfo'
ErrorResponse:
type: object
description: Standard error response
properties:
meta:
type: object
properties:
code:
type: integer
description: HTTP error code
message:
type: string
description: Human-readable error message
Meta:
type: object
description: Response metadata
properties:
code:
type: integer
description: HTTP status code
example: 200
disclaimer:
type: string
description: Usage disclaimer text
example: Usage subject to terms
responses:
Unauthorized:
description: Missing or invalid API key
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
example:
meta:
code: 401
message: Invalid or missing API key
ServerError:
description: Internal server error
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
example:
meta:
code: 500
message: Internal server error
TooManyRequests:
description: Rate limit exceeded
content:
application/json:
schema:
$ref: '#/components/schemas/ErrorResponse'
example:
meta:
code: 429
message: Rate limit exceeded
securitySchemes:
ApiKeyQuery:
type: apiKey
in: query
name: api_key
description: API key passed as a query parameter.
BearerAuth:
type: http
scheme: bearer
description: API key passed as a Bearer token in the Authorization header.
externalDocs:
description: CurrencyBeacon API Documentation
url: https://currencybeacon.com/api-documentation