---
title: "List Solana Wallets"
method: GET
path: "/v1/solana/wallets"
tags: ["Solana"]
---

# List Solana Wallets

`GET /v1/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.

## Query parameters

- `page` integer — Page number for paginated results. Starts at 1.
- `limit` integer — Maximum number of wallets to return per page.

## Response `200`

Successfully retrieved Solana wallets with pagination metadata.

- object
  - `result` object, required
    - `wallets` object[], required — Array of Solana wallets created for your project.
      - `address` string, required — Base58 encoded Solana address.
      - `label` string, nullable — Optional label associated with the wallet.
      - `createdAt` string, required — ISO 8601 timestamp indicating when the wallet was created.
      - `updatedAt` string, required — ISO 8601 timestamp indicating when the wallet was last updated.
    - `pagination` object, required — Pagination details for the wallet list.
      - `totalCount` number, required — Total number of wallets available.
      - `page` integer, required — Current page number.
      - `limit` integer, required — Number of wallets returned per page.

## Other responses

- `401` — Authentication required. Include x-secret-key or Authorization headers.
- `500` — Internal server error occurred while listing wallets.

---

[API](https://skmtc.net/thirdweb/apis/thirdweb-api.md) · [All operations](https://skmtc.net/thirdweb/apis/thirdweb-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/thirdweb/thirdweb-api/revisions/fb4cb67da1c7/schema)
