curl --request GET \
--url https://api.sandbox.iron.xyz/api/addresses/fiat \
--header 'X-API-Key: <api-key>' \
--header 'X-SUB-PARTNER-ID: <x-sub-partner-id>'{
"items": [
{
"bank_account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"bank_details": {
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": {
"code": "GB"
},
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"email_address": {
"email": "john.doe@example.com"
},
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": {
"code": "DE"
},
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
},
"bank_name": "Iron Bank",
"country": "DE",
"created_at": "2024-01-15T10:30:00.000Z",
"currency": "EUR",
"customer_id": "123e4567-e89b-12d3-a456-426614174000",
"id": "550e8400-e29b-41d4-a716-446655440000",
"is_third_party": false,
"label": "Primary Business Account",
"ownership_verified": true,
"status": "Registered",
"updated_at": "1970-01-01T00:00:00.000Z"
}
],
"cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prev_cursor": null
}Get all fiat addresses with a specific status for the current partner
curl --request GET \
--url https://api.sandbox.iron.xyz/api/addresses/fiat \
--header 'X-API-Key: <api-key>' \
--header 'X-SUB-PARTNER-ID: <x-sub-partner-id>'{
"items": [
{
"bank_account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"bank_details": {
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": {
"code": "GB"
},
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"email_address": {
"email": "john.doe@example.com"
},
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": {
"code": "DE"
},
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
},
"bank_name": "Iron Bank",
"country": "DE",
"created_at": "2024-01-15T10:30:00.000Z",
"currency": "EUR",
"customer_id": "123e4567-e89b-12d3-a456-426614174000",
"id": "550e8400-e29b-41d4-a716-446655440000",
"is_third_party": false,
"label": "Primary Business Account",
"ownership_verified": true,
"status": "Registered",
"updated_at": "1970-01-01T00:00:00.000Z"
}
],
"cursor": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"prev_cursor": null
}API Key
Optional sub-partner UUID, if provided, the fiat addresses will be filtered for the sub-partner
The Status to filter by. If not provided, defaults to Registered
Verification Status
The status of the verification of a fiat address
AuthorizationRequired, AuthorizationFailed, RegistrationPending, RegistrationFailed, Registered Paging: the cursor field from previous page
Paging: the requested page size (max 100)
GET Addresses Succeeded
PagedList
A list of items with cursors used to fetch the next or previous page
The list of items
Show child attributes
{ "iban": "DE89370400440532013000" }RecipientBankAccount
A recipient fiat bank account
Show child attributes
{ "iban": "DE89370400440532013000" }RecipientPostalAddress
The account holder's address.
Show child attributes
The city
The postal code
The state
The street address
Is this a users fiat bank account or a third party fiat bank account
The name of the provider of the recipient's account
{
"family_name": "Turing",
"given_name": "Alan"
}The recipient's phone number. Required for USD accounts.
{
"account_identifier": {
"iban": "DE89370400440532013000",
"type": "SEPA"
},
"address": {
"city": "London",
"country": { "code": "GB" },
"postal_code": "SW1A 2AA",
"state": "England",
"street": "10 Downing Street"
},
"email_address": { "email": "john.doe@example.com" },
"is_third_party": false,
"phone_number": "+49-30-12345678",
"provider_country": { "code": "DE" },
"provider_name": "Iron Bank",
"recipient": {
"name": "Aperture Science",
"type": "Business"
}
}The bank name
The country code
When the address was created
The currency of the bank account
The customer ID
The ID of the address
Is this a third party fiat address
Has the customer verified their ownership of this account
Verification Status
The status of the verification of a fiat address
AuthorizationRequired, AuthorizationFailed, RegistrationPending, RegistrationFailed, Registered When the address was last updated
Optional label for the address
The cursor used to fetch the next page
The cursor used to fetch the previous page