---
title: Convert Currency to Multiple Currencies API
slug: convert-currency-multiple
url: https://apyverse.com/apyhub/service/convert-currency-multiple
provider: ApyHub
tags: [currency-conversion, fx-rates, foreign-exchange, multi-currency, finance]
auth: api_key
---

# Convert Currency to Multiple Currencies API

What it does Currency Converter lets you convert one source currency into multiple target currencies in a single request. Send a source currency code and a targets array, and it returns one value per requested pair in the response. You can also include an optional date to look up rates for a specif…

## Endpoints

| Method | Path | Description | Atoms |
| --- | --- | --- | --- |
| POST | `/data/convert/currency/multiple` | What it does Converts one source currency into multiple target currencies and returns the conversio… | 100 |

## About

## What it does
Currency Converter lets you convert one source currency into multiple target currencies in a single request. Send a `source` currency code and a `targets` array, and it returns one value per requested pair in the response.

You can also include an optional `date` to look up rates for a specific day. When `date` is omitted or blank, it defaults to today. That makes it useful for current pricing, billing checks, and historical comparisons where you need a rate tied to a known date.

The response is a flat object keyed by currency pair, such as `usd_eur` or `usd_gbp`. Each value is either a number for a successful conversion or `false` when a conversion is unavailable for that pair. That keeps the output easy to consume in scripts, pricing logic, and backend services that need to fan out one source amount across several markets.

Use Currency Converter when you need to display localized prices, reconcile multi-currency transactions, or normalize currency values across reports without making separate requests for each target currency.

## Usage

Authenticate with an ApyHub API key in the `apy-token` header.
Full docs and a live playground: https://apyverse.com/apyhub/service/convert-currency-multiple
