GET
/
environments
/
{environmentId}
/
wallets
/
{walletId}
curl --request GET \
  --url https://app.dynamicauth.com/api/v0/environments/{environmentId}/wallets/{walletId} \
  --header 'Authorization: Bearer <token>'
{
  "id": "95b11417-f18f-457f-8804-68e361f9164f",
  "name": "An example name",
  "chain": "ETH",
  "publicKey": "0xbF394748301603f18d953C90F0b087CBEC0E1834",
  "provider": "browserExtension",
  "properties": {
    "turnkeySubOrganizationId": "95b11417-f18f-457f-8804-68e361f9164f",
    "turnkeyPrivateKeyId": "95b11417-f18f-457f-8804-68e361f9164f",
    "turnkeyHDWalletId": "95b11417-f18f-457f-8804-68e361f9164f",
    "isAuthenticatorAttached": true,
    "turnkeyUserId": "95b11417-f18f-457f-8804-68e361f9164f",
    "isSessionKeyCompatible": true,
    "version": "V1",
    "ecdsaProviderType": "zerodev_signer_to_ecdsa",
    "entryPointVersion": "v6",
    "kernelVersion": "v2_4"
  },
  "lastSelectedAt": "<string>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

environmentId
string
required

ID of the environment

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

walletId
string
required

UUID of the wallet

Required string length: 36
Example:

"95b11417-f18f-457f-8804-68e361f9164f"

Response

200
application/json
Successful response with wallet

The response is of type object.