API Reference (1.0)
El API de ZRU utiliza métodos HTTP y una estructura RESTful de endpoint.
- La autenticación del API se realiza vía Header Authorization.
- Todas las peticiones se deben realizar en formato JSON, y las respuestas del API son en dicho formato.
Download OpenAPI description
Overview
Languages
Servers
v1
https://api.zrupay.com/v1/
- v1
https://api.zrupay.com/v1/currency/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
https://api.zrupay.com/v1/currency/ \
-H 'Authorization: YOUR_API_KEY_HERE'
Response
application/json
{ "count": 0, "items_per_page": 0, "next": "string", "previous": "string", "results": [ { … } ] }
- v1
https://api.zrupay.com/v1/currency/{currency-id}/
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://api.zrupay.com/v1/currency/{currency-id}/' \
-H 'Authorization: YOUR_API_KEY_HERE'
Response
application/json
{ "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08", "name": "string", "code": "EUR" }