curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_wallet \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
  --data '{
    "organizationId": "<string>",
    "walletId": "<string>"
}'
{
  "activity": {
    "id": "<activity-id>",
    "status": "ACTIVITY_STATUS_COMPLETED",
    "type": "ACTIVITY_TYPE_UNKNOWN_V1",
    "organizationId": "<organization-id>",
    "timestampMs": "<timestamp> (e.g., 1745474677462)",
    "result": {
      "wallet": {
        "walletId": "<string>",
        "walletName": "<string>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "exported": true,
        "imported": true
      }
    }
  }
}
POST
/
public
/
v1
/
query
/
get_wallet

Authorizations

X-Stamp
string
header
required

Body

organizationId
string
required

Unique identifier for a given Organization.

walletId
string
required

Unique identifier for a given Wallet.

Response

A successful response returns the following fields:

wallet
object
required

wallet field

curl --request POST \
  --url https://api.turnkey.com/public/v1/query/get_wallet \
  --header 'Accept: application/json' \
  --header 'Content-Type: application/json' \
  --header "X-Stamp: <YOUR_API_KEY.YOUR_API_SECRET>" \
  --data '{
    "organizationId": "<string>",
    "walletId": "<string>"
}'
{
  "activity": {
    "id": "<activity-id>",
    "status": "ACTIVITY_STATUS_COMPLETED",
    "type": "ACTIVITY_TYPE_UNKNOWN_V1",
    "organizationId": "<organization-id>",
    "timestampMs": "<timestamp> (e.g., 1745474677462)",
    "result": {
      "wallet": {
        "walletId": "<string>",
        "walletName": "<string>",
        "createdAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "updatedAt": {
          "seconds": "<string>",
          "nanos": "<string>"
        },
        "exported": true,
        "imported": true
      }
    }
  }
}