Skip to content

Securely get a verified address for an EOA account

GET/accounts/{id}/address

Path parameters

NameTypeDescriptionRequired
id
string
Id of the target account

Response schema

string

Examples

bash
curl \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer {jwt}" \
  "$API_BASE_URL/accounts/{id}/address"
ts
const url = "<base-url>/accounts/{id}/address";

const headers = {
  "Content-Type": "application/json",
  Authorization: "Bearer <jwt>"
};

fetch(url, { headers }).then(res => {
  console.log(res)
});
python
import requests

url = "<base-url>/accounts/{id}/address"

headers = {
  "Content-Type": "application/json",
  "Authorization": "Bearer <jwt>"
}

print(requests.get(url, headers=headers))