Currency Exchange Rates Request
FinancialHow to call Currency Exchange Rates — the endpoint, the headers it expects, and every request parameter with its type.
Endpoint
POST
https://app.way2api.com/api/v1/currency/rates
Headers
Authorization: Bearer your_api_key_here
Content-Type: application/json
Parameters (application/json)
| Parameter | Type | Required | Description |
|---|---|---|---|
| base | string | Optional | Base currency code, 3–5 letters. Defaults to USD. Accepts fiat, crypto and metal codes. |
| symbols | string | Optional | Comma-separated currency codes to return, e.g. "INR,EUR,GBP". Defaults to every quoted currency. |
Request Body
{
"base": "USD",
"symbols": "INR,EUR,GBP"
}
cURL
curl -X POST https://app.way2api.com/api/v1/currency/rates \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{"base":"USD","symbols":"INR,EUR,GBP"}'
🚀 Send Request