Welcome to the Convertify API! This is a simple RESTful service for currency conversion and IP-based currency lookup.
Method: POST
Description: Convert from one currency to another using live rates.
{
"from": "USD",
"to": "PKR",
"amount": 100
}
{
"PKR": "Conversion rate will vary. Example: 276.25"
}
Method: POST
Description: Detect the currency code based on IP address.
{
"ip": "1.32.128.0"
}
{
"ip": "1.32.128.0",
"countryCode": "SG",
"currencyCode": "SGD"
}