Skip to main content
GET
/
v2
/
users
/
{userId}
/
orchestration-addresses
List orchestration addresses
curl --request GET \
  --url https://production.hifibridge.com/v2/users/{userId}/orchestration-addresses \
  --header 'Authorization: Bearer <token>'
{
  "count": 123,
  "records": [
    {
      "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "userId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "address": "0xAbC0123456789AbCdEf0123456789AbCdEf01234",
      "source": {
        "chain": "BASE"
      },
      "destination": {
        "currency": "usd",
        "accountId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
      },
      "schedule": {
        "nextRunAt": "2023-11-07T05:31:56Z"
      },
      "thresholdAmount": "100.00",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedAt": "2023-11-07T05:31:56Z",
      "deactivatedAt": "2023-11-07T05:31:56Z",
      "balance": {
        "currency": "usdc",
        "amount": "100.500000"
      }
    }
  ]
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

userId
string
required

ID of the user

Query Parameters

limit
integer
default:50

Maximum number of records to return. 1–200, defaults to 50.

Required range: 1 <= x <= 200
offset
integer
default:0

Number of records to skip (offset-based pagination).

Required range: x >= 0

Response

A paginated list of orchestration addresses for the user.

Paginated list of orchestration addresses.

count
integer

Number of records returned in this page.

records
object[]