v1
latestOpenAPI 3.0.02026-07-26103425558.9 KBOrchestration Address
List orchestration addresses
Return all orchestration addresses owned by the user, most recent first. Includes both ACTIVE and DEACTIVATED addresses.
get/v2/users/{userId}/orchestration-addresses
Path parameters
userIdstring required
ID of the user
Query parameters
createdBeforestring date-time
Cursor for the next page. Pass the previous response's nextCursor value to return records created strictly before that timestamp.
limitinteger
Maximum number of records to return. 1–200, defaults to 50.
Response
A paginated list of orchestration addresses for the user.
Example response
{
"records": [
{
"address": "0xAbC0123456789AbCdEf0123456789AbCdEf01234",
"source": {
"chain": "BASE"
},
"thresholdAmount": "100.00",
"balance": {
"currency": "usdc",
"amount": "100.500000"
}
}
]
}