Skip to content

Domain Subdomains

Paginate direct child names under a parent domain.
Run in ENSAdmin
GraphQL
query DomainSubdomains($name: InterpretedName!) {
domain(by: {name: $name}) {
name
subdomains(first: 10) {
edges {
node {
name
}
}
}
}
}

Payload and transport examples

{
"name": "eth"
}

Response is an illustrative snapshot; live data depends on your ENSNode instance. The curl tab shows a POST to https://api.v2-sepolia.ensnode.io/api/omnigraph

Back to Examples