DevOps | Currency API

Currency API Service

Currency exchange rates with Redis caching

Currency Converter

API Examples

Service Information

curl -X GET "https://nikitos.tech/info"

Response:

{
    "version": "0.1.0",
    "service": "currency",
    "author": "n.bakhilin"    
}

Single Currency Rate

curl -X GET "https://nikitos.tech/info/currency?date=2016-12-12&currency=USD"

Response:

{
    "service": "currency",
    "data": {
        "USD": 63.3028
    }
}

All Currency Rates

curl -X GET "https://nikitos.tech/info/currency?date=2016-12-12"

Response:

{
    "service": "currency",
    "data": {
        "AUD": 47.2745,
        "AZN": 35.8697,
        "GBP": 79.6349,
        "AMD": 13.1601,
        "BYN": 32.1171,
        ...
    }
}