GET
/
api
/
v1
/
ibans
/
orders
Retrieve a list of Monerium IBAN orders
const url = 'https://api.gnosispay.com/api/v1/ibans/orders';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}, body: undefined};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
{
  "data": [
    {
      "id": "<string>",
      "kind": "redeem",
      "currency": "eur",
      "amount": "<string>",
      "address": "<string>",
      "counterpart": {
        "details": {
          "name": "<string>"
        },
        "identifier": {
          "standard": "iban",
          "iban": "<string>"
        }
      },
      "memo": "<string>",
      "state": "placed",
      "meta": {
        "placedAt": "2023-11-07T05:31:56Z"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Response

200
application/json

A list of Monerium IBAN orders

The response is of type object.