Fetches a list of the user's recipient accounts.
- All query parameters are optional.
- Pagination is supported.
- Set the
sizeparameter to determine the number of accounts per page (max 20). - Set the
seekPositionparameter to the value returned in theseekPositionForNextfield of the previous response to retrieve the next page.
- Set the
Controls the sorting strategy for the response.
Uses comma-separated options (either id or currency first, followed by asc or desc for direction).
?sort=id,ascsorts in ascending order byid.?sort=id,descsorts in descending order byid.?sort=currency,ascsorts in ascending order by currency.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
- Production Environmenthttps://api.wise.com/2026Q3/accounts
- Sandbox Environmenthttps://api.wise-sandbox.com/2026Q3/accounts
curl -i -X GET \
'https://api.wise.com/2026Q3/accounts?creatorId=0&profileId=0&profile=0¤cy=string&active=true&type=string&ownedByCustomer=true&size=20&seekPosition=0&sort=id%2Casc' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479'Paginated list of recipient accounts.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Seek position for the next page of the response. For pagination, use this value for the seekPosition query parameter of your next request to fetch the next page.
Seek position for the current page of the response. For pagination, use this value for the seekPosition query parameter of your next request to fetch this current page again.
{ "content": [ { "id": 40000000, "creatorId": 41000000, "profileId": 30000000, "name": { … }, "currency": "GBP", "country": "GB", "type": "SortCode", "legalEntityType": "PERSON", "active": true, "details": { … }, "commonFieldMap": { … }, "hash": "666ef880f8aa6113fa112ba6531d3ed2c26dd9fgbd7de5136bfb827a6e800479", "accountSummary": "(04-00-75) 37778842", "longAccountSummary": "GBP account ending in 8842", "displayFields": [ … ], "isInternal": false, "ownedByCustomer": false } ], "seekPositionForNext": 40000001, "seekPositionForCurrent": 40000000, "sort": { "empty": true, "sorted": false, "unsorted": true }, "size": 20 }