Users

User management operations

Get the transfer by transfer ID

get

Get the transfer by transfer ID.

Authorizations
x-api-idstringRequired
Path parameters
transferIdstringRequired
Responses
200

Transfer found

application/json
get
/v1/users/transfer/{transferId}

Get user details including PII from Bridge

get

Proxies request to Bridge API to get fresh user details including name and type. Data is NOT stored on our servers - fetched directly from Bridge.

Authorizations
x-api-idstringRequired
Path parameters
idstringRequired
Responses
200

User details retrieved from Bridge

application/json
get
/v1/users/{id}/details

Get the balance of a user

get

Get the balance of a user.

Authorizations
x-api-idstringRequired
Path parameters
idstringRequired
Responses
200

Balance found

application/json
get
/v1/users/{id}/balance

Get the transfers of a user

get

Get the transfers of a user.

Authorizations
x-api-idstringRequired
Path parameters
idstringRequired
Query parameters
limitnumberRequired

The number of items to return (default of 10, max of 50)

Default: 10Example: 10
starting_afterstringOptional

This is a transfer id. If this is specified, the next page that starts with a transfer right AFTER the specified transfer id on the transfer timeline, which is always ordered from the newest to the oldest by creation time, will be returned. This also implies that transfers older than the specified transfer id will be returned (shouldn't be set if ending_before is set)

Example: 123
ending_beforestringOptional

This is a transfer id. If this is specified, the next page that starts with a transfer right BEFORE the specified transfer id on the transfer timeline, which is always ordered from the newest to the oldest by creation time, will be returned. This also implies that transfers newer than the specified transfer id will be returned (shouldn't be set if starting_after is set)

Example: 123
tx_hashstringOptional

Tx hash of the transaction

Example: 0x1234567890123456789012345678901234567890
updated_after_msnumberOptional

This is a unix timestamp in milliseconds. If this is specified, objects updated AFTER the specified timestamp will be returned

Example: 1714732800000
updated_before_msnumberOptional

Unix timestamp in milliseconds - returns objects updated BEFORE this timestamp

Example: 1714732800000
statestring · enumRequired

Filter transfers by their external state

Example: awaiting_fundsPossible values:
Responses
200

Transfers found

application/json
get
/v1/users/{id}/transfers

Get a user by their User ID

get

Get a user by their User ID.

Authorizations
x-api-idstringRequired
Path parameters
idstringRequired
Responses
200

User found

application/json
get
/v1/users/{id}

Last updated