Currency Converter API in PHP

Call the Currency Converter API from PHP with a single request — here's the whole thing, key included.

Fetch currency converter api data.

$ch = curl_init("https://api.apiverve.com/v1/currencyconverter");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-api-key: YOUR_API_KEY"]);

$response = curl_exec($ch);
echo $response;

Swap YOUR_API_KEY for the key on your dashboard. See the reference for the exact parameters this endpoint accepts.

The response.

from"USD"
to"EUR"
value1
convertedValue0.921456
rate0.921456
change24h-0.002134

Run it in PHP. One key, the Currency Converter API, live in minutes.

Scaling up?

Volume pricing, custom SLAs, and dedicated support for high-traffic teams.

Contact sales