v1

latestOpenAPI 3.1.02026-07-13570316.1 KB
Solana

List Solana Wallets

List all Solana wallets created for your project. Supports pagination with page and limit parameters.

Authentication: This endpoint requires backend authentication using the x-secret-key header. The secret key should never be exposed publicly.

get/v1/solana/wallets

Query parameters

pageinteger

Page number for paginated results. Starts at 1.

Page number for paginated results. Starts at 1.

limitinteger

Maximum number of wallets to return per page.

Maximum number of wallets to return per page.

Response

Successfully retrieved Solana wallets with pagination metadata.

Example response

{
  "result": {
    "wallets": [
      {
        "address": "8JBLmveV4YF5AQ7EVnKJgyj6etGgVkPp3tYqQMTu3p5B"
      }
    ]
  }
}