Ultimate Real-Time Currency Converter avatar
Ultimate Real-Time Currency Converter

Pricing

$2.00 / 1,000 results

Go to Apify Store
Ultimate Real-Time Currency Converter

Ultimate Real-Time Currency Converter

Real-time currency conversion and currency symbols API supporting over 1,400 global fiat and crypto currencies.

Pricing

$2.00 / 1,000 results

Rating

0.0

(0)

Developer

Siavash

Siavash

Maintained by Community

Actor stats

0

Bookmarked

2

Total users

1

Monthly active users

4 days ago

Last modified

Categories

Share

Ultimate Real-Time Currency Converter API

A production-ready Apify Actor that provides real-time currency conversion and currency symbols data through a simple, developer‑friendly API.

This Actor supports over 1,400 global fiat and crypto currencies and is designed for fast, reliable, and scalable API usage.


🚀 Features

  • ✅ Real-time currency conversion
  • ✅ Access to 1,400+ global fiat & crypto currency symbols
  • ✅ Clean, structured JSON output
  • ✅ Built with the modern Apify Python SDK
  • ✅ Async & high-performance (aiohttp)
  • ✅ Marketplace-ready API design

🔗 Supported Operations

This Actor supports two operations, controlled by the operation_type input parameter.

1. List Currency Symbols

Fetch the complete list of supported currency symbols.

Endpoint used:

GET /currency_list

2. Convert Currency

Convert one currency to another in real time.

Endpoint used:

GET /real_time_convert

📥 Input Parameters

FieldTypeRequiredDescription
operation_typestringOperation to run: list_symbols or convert_currency
from_currencystringSource currency code (default: USD)
to_currencystringTarget currency code (default: EUR)
amountnumberAmount to convert (default: 1)

✅ Example Inputs

List Symbols

{
"operation_type": "list_symbols"
}

Convert Currency

{
"operation_type": "convert_currency",
"from_currency": "USD",
"to_currency": "EUR",
"amount": 100
}

📤 Output Schema

✅ List Symbols Output

{
"operation": "list_symbols",
"count": 1420,
"symbols": [
{
"code": "EUR",
"name": "Euro",
"id": "17"
}
]
}

✅ Convert Currency Output

{
"operation": "convert_currency",
"from": "USD",
"to": "EUR",
"amount": 100,
"calculated_amount": 91.42,
"rate_from": "1 USD = ...",
"rate_to": "1 EUR = ..."
}

🧠 Use Cases

  • Currency conversion APIs
  • Financial dashboards
  • Trading & forex automation
  • Data analysis pipelines
  • Web & mobile applications
  • Market research and monitoring

##🛠️ Technology Stack Python 3.11 Apify Python SDK aiohttp (async HTTP client)