Skip to main content
GET
/
api
/
v1
/
conversions
/
convert
Convert currency
curl --request GET \
  --url https://api.zenobank.io/api/v1/conversions/convert
{
  "amount": "100.50",
  "from": "EUR",
  "to": "USDC"
}

Query Parameters

from
string
required

Source currency code (e.g., USD, EUR, BTC)

Example:

"USD"

to
string
required

Target currency code (e.g., USD, EUR, BTC)

Example:

"EUR"

amount
string
required

Amount to convert

Example:

"100"

Response

Successfully converted currency

amount
string
required

The converted amount

Example:

"100.50"

from
string
required

The source currency code

Example:

"EUR"

to
string
required

The target currency code

Example:

"USDC"