Skip to main content
GET
/
convert
cURL
curl --request GET \
  --url 'https://api.fastforex.io/convert?api_key='
{
  "base": "USD",
  "amount": 199.5,
  "result": {
    "EUR": 164.29,
    "rate": 0.82353
  },
  "ms": 7
}

Authorizations

api_key
string
query
required

Query Parameters

from
string

Base currency symbol (physical or digital) Currency code for a physical or digital/cryptocurrency

Pattern: [A-Z0-9]{3,6}
to
string
required

Target currency symbol (physical or digital) Currency code for a physical or digital/cryptocurrency

Pattern: [A-Z0-9]{3,6}
amount
number<float>
required

Amount of source currency to convert

Required range: x >= 0.01
precision
integer

Rounding precision for converted amount, defaults to 2 decimal places

Required range: 0 <= x <= 20

Response

Success

base
string

Currency code for a physical or digital/cryptocurrency

Pattern: [A-Z0-9]{3,6}
ms
number<int32>

Server response time in milliseconds

amount
number<float>
result
object