Currency.com Exchange API python implementation for automated trading
Last updated Jan 3, 2026
34
Stars
15
Forks
6
Issues
0
Stars/day
Attention Score
31
Language breakdown
No language data available.
▸ Files
click to expand
README
Welcome to the python-currencycom
This is an unofficial Python wrapper for the Currency.com exchange REST API v1. I am in no way affiliated with Currency.com, use at your own risk.
Documentation
Please find official documentation by: https://exchange.currency.com/apiOr Swagger by the link: https://apitradedoc.currency.com/swagger-ui.html#/.
QuickStart
Register an account on Currency.com
Create an API Key with correct permissions
pip install python-currencycom
Let's retrieve tradable symbols on the market
from pprint import pprint
from currencycom.client import Client
client = Client('APIKEY', 'SECRETKEY')
Exchange info contains various info including tradable symbols
exchangeinfo = client.getexchange_info()
tradablesymbols = [x['symbol'] for x in exchangeinfo['symbols']]
pprint(tradable_symbols,
indent=2)
For more check out the documentation and Swagger.
🔗 More in this category