GET
/
v1
/
wallet
/
hd
/
address
/
{address}
Get wallet by address
curl --request GET \
  --url https://api.withconvexity.com/v1/wallet/hd/address/{address} \
  --header 'Authorization: Bearer <token>'
{
  "status": true,
  "message": "Wallet fetched successfully",
  "data": {
    "id": "9f1c2b3a-4d5e-6f70-8a9b-0c1d2e3f4a5b",
    "businessName": "Acme Liquidity Ltd",
    "address": "0x3A1cF4e2B8D9a7C6e5F4b3A2c1D0e9F8a7B6c5D4",
    "chainType": "EVM",
    "purpose": "general",
    "derivationPath": "m/44'/60'/0'/0/0",
    "addressIndex": 0,
    "isActive": true,
    "createdAt": "2026-06-17T10:15:30.000Z",
    "deactivatedAt": null,
    "metadata": null
  }
}

Authorizations

Authorization
string
header
required

OAuth 2.0 access token from Auth-Edge.

Path Parameters

address
string
required

On-chain address.

Query Parameters

chainType
enum<string>

Disambiguate the chain.

Available options:
EVM,
SOLANA

Response

OK

The response is of type object.