GET
/
wallets
Get all Bridge Wallets
curl --request GET \
  --url https://api.bridge.xyz/v0/wallets \
  --header 'Api-Key: <api-key>'
{
"count": 1,
"data": [
{
"id": "bw_123",
"chain": "solana",
"address": "9kV3ZMehKVyxfHKCcaDLye3P9HHw2MP4jtQa2gKBUmCs",
"created_at": "2023-11-22T21:31:30.515Z",
"updated_at": "2023-11-22T21:31:30.515Z"
}
]
}

Authorizations

Api-Key
string
header
required

Query Parameters

limit
integer

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

starting_after
string

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

ending_before
string

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

Response

200
application/json

List of Bridge Wallets

The response is of type object.