API Basics
Data Tools
WWW
Browser Bot
HTML Clean
URL Info
Telephony
Geolocation
Security and Networking
E-commerce
Imaging
Legacy APIs

Convert

A currency and unit conversion tool.

Convert between currency, cryptocurrency and various other units using an up-to-date data feed.

All major currencies are updated every 15 minutes with exchange rates aggregated from multiple international exchanges and averaged out.

The currently supported units are:

Currencies

AED, AFN, ALL, ARS, AUD, BDT, BGN, BHD, BOB, BRL, CAD, CHF, CLP, CNY, COP, CRC, CZK, DKK, DZD, EGP, EUR, FJD, GBP, GEL, GHS, HKD, HRK, HUF, IDR, ILS, INR, IQD, ISK, JOD, JPY, KES, KRW, KWD, KZT, LBP, LKR, MAD, MDL, MMK, MNT, MOP, MXN, MYR, NGN, NOK, NZD, OMR, PEN, PHP, PKR, PLN, PYG, QAR, RON, RSD, RUB, SAR, SEK, SGD, THB, TRY, TWD, TZS, UAH, USD, VEF, VND, ZAR

Units of Measure

Amp, Bit, Byte, Celsius, Day, Degree, Fahrenheit, Feet, Gallon, Gram, Hour, Inch, Joule, Kelvin, Liter, Meter, Micron, Mile, Minute, Mole, Month, Newton, Ohm, Ounce, Pascal, Pint, Pound, Radian, Second, Tonne, Volt, Watt, Week, Yard

Cryptocurrencies

BTC, ETH, LTC, XMR, XRP

End Point

https://neutrinoapi.net/convert
Test API
API Request
ParameterRequiredTypeDefaultDescription
from-valueyesstringThe value to convert from (e.g. 10.95)
from-typeyesstringThe type of the value to convert from (e.g. USD)
to-typeyesstringThe type to convert to (e.g. EUR)
API Response
ParameterTypeDescription
validbooleanTrue if the conversion was successful and produced a valid result
resultstringThe result of the conversion in string format
result-floatfloatThe result of the conversion as a floating-point number
from-valuestringThe value being converted from
from-typestringThe type of the value being converted from
from-namestringThe full name of the type being converted from
from-symbolstringThe standard UTF-8 symbol used to represent the type being converted from
to-typestringThe type being converted to
to-namestringThe full name of the type being converted to
to-symbolstringThe standard UTF-8 symbol used to represent the type being converted to
API Performance
CharacteristicValueDescription
Avg Latency15msAverage RTT for requests within the same data center/region
Max Rate500/secondMaximum inbound request rate. Exceeding this will result in request throttling
Max Concurrency250Maximum concurrent/simultaneous requests. Exceeding this will result in error code 06 [TOO MANY CONNECTIONS]

API Example
curl https://neutrinoapi.net/convert \ --header "User-ID: <your-user-id>" \ --header "API-Key: <your-api-key>" \ --data-urlencode "from-value=100" \ --data-urlencode "from-type=USD" \ --data-urlencode "to-type=EUR"
{ from-name: "United States Dollar", from-symbol: "$", from-type: "USD", from-value: "100", result: "92.9827", result-float: 92.9827, to-name: "Euro", to-symbol: "€", to-type: "EUR", valid: true }