getCurrencyRates method

The getCurrencyRates method allows you to get a list of all currencies in the Selzy system.

Principle of use

Syntax and URL to call the method
getCurrencyRates ()
https://api.selzy.com/en/api/getCurrencyRates?format=json&api_key=KEY
Arguments
api_key * API access key.
format The display format obtains the values of html | json, json is set by default.
Return value
Example of the return value in the event the request is successful:

{
   "result":
     [ 
       {
          "id":4,
          "code":"UAH",
          "rate_to_usd":"15.3700",
          "min_payment_sum":"153.70",
          "is_visible":true
       },
       { ... },
       { ... },
    ]
}

Did we answer to your question?

0
0