Skip to main content
GET
/
api
/
v1
/
wallets
/
{wallet_uuid}
/
recent-addresses
List recent addresses
import requests

url = "https://api.example.com/api/v1/wallets/{wallet_uuid}/recent-addresses"

response = requests.get(url)

print(response.text)
{
  "result": [
    {
      "address": "<string>",
      "chain_id": "",
      "token_id": ""
    }
  ],
  "success": true,
  "suggestion": "",
  "message": "",
  "meta": {
    "total": 123,
    "offset": 123,
    "limit": 123,
    "has_more": true,
    "after": "<string>",
    "before": "<string>"
  }
}

Headers

X-API-Key
string | null

Path Parameters

wallet_uuid
string<uuid>
required

The UUID of the wallet whose recent recipient addresses to retrieve. Retrieve this value from the id field returned when the wallet was created.

Query Parameters

limit
integer
default:10

The maximum number of addresses to return. Range: [1, 50].

Required range: 1 <= x <= 50

Response

Successful Response

result
RecentAddressRead · object[]
required
success
boolean
default:true
suggestion
string
default:""
message
string
default:""
meta
PaginationMeta · object

Pagination metadata for list responses.

Supports both legacy offset-based and cursor-based pagination. Cursor fields (has_more, after, before) are populated for cursor-paginated endpoints. Legacy fields (offset, limit) are populated when the caller uses the deprecated offset parameter.