Skip to main content
List the project (admin) wallets available to your project. Use a returned wallet id as the adminWalletId / projectWalletId in transaction and allocation requests. Route: GET /api/external/v1/wallets/admin-wallets

Headers

HeaderRequiredDescription
Content-TypeYesMust be application/json
x-magna-api-tokenYesYour Magna API token

Request example

curl -X GET https://app.magna.so/api/external/v1/wallets/admin-wallets \
-H 'Content-Type: application/json' \
-H 'x-magna-api-token: YOUR_API_KEY'

Response example

{
  "items": [
    { "id": "w1...uuid", "address": "0x...", "platform": "EVM" }
  ],
  "total": 1
}