Skip to main content
GET
/
api
/
v1
/
ibans
/
orders
Retrieve a list of Monerium IBAN orders
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.valox.co/api/v1/ibans/orders', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": [
    {
      "id": "<string>",
      "kind": "redeem",
      "currency": "eur",
      "amount": "<string>",
      "address": "<string>",
      "counterpart": {
        "details": {
          "name": "<string>"
        },
        "identifier": {
          "standard": "iban",
          "iban": "<string>"
        }
      },
      "state": "placed",
      "meta": {
        "placedAt": "2023-11-07T05:31:56Z"
      },
      "memo": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Response

A list of Monerium IBAN orders

data
object[]