Core Concepts
Transfer
Wallets and Vouchers
Account
Transaction and Asset Moves
Wallets and Vouchers
List Vouchers
Retrieves a list of vouchers based on specified criteria.
GET
/
v1
/
service
/
voucher
Copy
curl --request GET \
--url https://api.nxos.io/v1/service/voucher
Copy
[
{
"voucher_id": "<string>",
"value": {
"amount": "<string>",
"asset_code": "<string>"
},
"expires_at": "<string>",
"provider_name": "<string>",
"funding_source_account": "<string>",
"status": "ACTIVE"
}
]
Response
200 - application/json
A paginated list of Voucher objects matching the specified criteria.
The response is of type object[]
.
Copy
curl --request GET \
--url https://api.nxos.io/v1/service/voucher
Copy
[
{
"voucher_id": "<string>",
"value": {
"amount": "<string>",
"asset_code": "<string>"
},
"expires_at": "<string>",
"provider_name": "<string>",
"funding_source_account": "<string>",
"status": "ACTIVE"
}
]
Assistant
Responses are generated using AI and may contain mistakes.