Get per-network wallet address
GET
/v1/wallet/networks/{networkId}/address
const url = 'https://api.parasta.io/v1/wallet/networks/example/address';const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.parasta.io/v1/wallet/networks/example/address \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” networkId
required
string
Responses
Section titled “ Responses ”OK
Media type application/json
object
networkId
required
string
family
required
string
address
required
Canonical user-facing address in family-specific encoding.
EVM AA wallets surface the SmartAccount address here (0x hex);
Solana surfaces the base58-encoded ed25519 public key.
string
aa
Account-abstraction details. Present only when family=evm.
AA on non-EVM families (e.g. Solana) is deferred; this block is
absent there and clients should fall back to address alone.
object
smartAccountAddress
string
eoaAddress
string
deployed
boolean
deployTxHash
string
Example
{ "family": "evm"}