Skip to content

Get customer info

GET
/api/v4/partner/customer/info/{customerId}

Retrieve a customer's registered EVM addresses and IBANs in a single call. Useful for reconciling local state with what Holyheld currently has on file.

Authorizations

ApiKeyAuth
Type
API Key (header: X-Api-Key)

Parameters

Path Parameters

customerId*
Type
string
Required

Responses

OK

application/json
JSON
{
"status": "ok",
"payload": {
"customerId": "customer_a1b2c3d4",
"addresses": [
{
"addressEVM": "0x1111111111111111111111111111111111111111",
"registerTimestamp": 1724247261
}
],
"ibans": [
{
"ibanId": "iban_01HXYZ123456",
"iban": "DE89370400440532013000",
"beneficiaryName": "John Doe",
"bankName": "Commerzbank",
"bankCountry": "DE",
"bic": "COBADEFFXXX"
}
]
}
}

Playground

Authorization
Variables
Key
Value

Samples

Powered by VitePress OpenAPI

Code examples

bash
curl -X GET https://api.brrr.network/api/v4/partner/customer/info/cust_a1b2c3d4 \
  -H "X-Api-Key: YOUR_API_KEY"
javascript
const customerId = 'cust_a1b2c3d4';
const response = await fetch(`https://api.brrr.network/api/v4/partner/customer/info/${customerId}`, {
  headers: {
    'X-Api-Key': process.env.BRRR_API_KEY,
  },
});

const info = await response.json();
console.log('Addresses:', info.payload.addresses);
console.log('IBANs:', info.payload.ibans);
python
import os
import httpx

customer_id = 'cust_a1b2c3d4'
response = httpx.get(
    f'https://api.brrr.network/api/v4/partner/customer/info/{customer_id}',
    headers={
        'X-Api-Key': os.environ['BRRR_API_KEY'],
    },
)
response.raise_for_status()
print('Customer info:', response.json()['payload'])