Skip to main content
GET
/
wallets
/
{walletId}
/
addresses
/
{addressId}
Get a specific address
curl --request GET \
  --url http://localhost:4000/v1/wallets/{walletId}/addresses/{addressId} \
  --header 'Authorization: <api-key>'
{
  "success": true,
  "message": "<string>",
  "statusCode": 123,
  "timestamp": "<string>",
  "data": {
    "walletAccountId": "account-abc123",
    "walletId": "wallet-abc123def456",
    "address": "0x123abc456def789012345678901234567890abcd",
    "publicKey": "0x..."
  },
  "path": "<string>"
}

Authorizations

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Path Parameters

walletId
string
required

Turnkey wallet ID

Example:

"wallet-abc123def456"

addressId
string
required

Wallet account ID (address ID)

Example:

"account-xyz789"

Query Parameters

integratorId
string

Integrator ID (required for ADMIN scope)

Example:

"uuid-integrator-id"

Response

success
boolean
required
message
string
required
statusCode
number
required
timestamp
string
required
data
object
path
string