Owners
Distribution
This endpoint can be used to retrieve the domains distribution (includes escrow wallets)
GET /owners/distributionResponse
{
"success": true,
"result": [
{ "nb_owners": 1, "nb_domains": 41896 }
// ...
]
}This endpoint can be used to retrieve the domains distribution (excludes escrow wallets)
GET /owners/distribution-exclude-escrowsResponse
{
"success": true,
"result": [
{ "nb_owners": 1, "nb_domains": 41896 }
// ...
]
}Domains For Owner
This endpoint can be used to retrieve the domain owned by a public key
GET /owners/{owner_key}/domainsResponse
{
"success": true,
"result": [
"pharmacy",
"softball",
"travelagent"
// ...
]
}Last updated