Currencies

List all currencies

GET /api/currencies
<?xml version="1.0" encoding="UTF-8"?>
<currencies type="array" page="1" per_page="100" total="33">
    <currency>
        ...
    </currency>
    <currency>
        ...
    </currency>
    ...
</currencies>

The list can be filtered with parameters:

GET /api/currencies?code=USD

Shows the currency with the ISO currency code “USD”. It doesn’t matter if you use upper– or lowercase.
The following parameters can be used:

ParameterDescription
codeISO currency code

Show a specific currency

GET /api/currencies/{id}
<?xml version="1.0" encoding="UTF-8"?>
<currency>
    <id type="integer">2</id>
    <name>US Dollar</name>
    <code>USD</code>
    <symbol>$</symbol>
</currency>