🌍 Convertify API

Welcome to the Convertify API! This is a simple RESTful service for currency conversion and IP-based currency lookup.

🔄 /api/v1/exchange

Method: POST

Description: Convert from one currency to another using live rates.

📥 Request Body

{
  "from": "USD",
  "to": "PKR",
  "amount": 100
}

📤 Example Response

{
  "PKR": "Conversion rate will vary. Example: 276.25"
}

📍 /api/v1/location

Method: POST

Description: Detect the currency code based on IP address.

📥 Request Body

{
  "ip": "1.32.128.0"
}

📤 Example Response

{
  "ip": "1.32.128.0",
  "countryCode": "SG",
  "currencyCode": "SGD"
}