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

fetch('https://api.valox.co/api/v1/ibans/details', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "data": {
    "ibanStatus": "PENDING",
    "iban": "DE44500105175407324931",
    "bic": "GENODEM1GLS",
    "address": "0x71C7656EC7ab88b098defB751B7401B5f6d8976F"
  }
}

Authorizations

Authorization
string
header
required

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

Response

Successfully retrieved IBAN details

data
object