This is a deprecated v1 endpoint. For new integrations please use the v2 get endpoint.
Get recipient account info by ID.
Security
UserToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
- Production Environmenthttps://api.wise.com/v1/accounts/{accountId}
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/accounts/{accountId}
curl -i -X GET \
'https://api.wise.com/v1/accounts/{accountId}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'V1 recipient account details.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Currency-specific fields. All possible fields are returned, with unused fields set to null.
Response
{ "id": 40000000, "business": null, "profile": 30000000, "accountHolderName": "John Doe", "currency": "GBP", "country": "GB", "type": "sort_code", "details": { "legalType": "PRIVATE", "sortCode": "040075", "accountNumber": "37778842" }, "user": 10000000, "active": true, "ownedByCustomer": false, "confirmations": { "acceptedOutcomes": false, "acceptedAt": null, "quoteId": null, "outcomes": [ {} ] } }