Skip to content

Recently Registered Subdomains

List a parent domain's subdomains ordered by most recent registration first.

Run in ENSAdmin
GraphQL
query RecentlyRegisteredSubdomains($name: InterpretedName!) {
domain(by: {name: $name}) {
canonical { name { interpreted beautified } }
subdomains(first: 10, order: {by: REGISTRATION_TIMESTAMP, dir: DESC}) {
edges {
node {
canonical { name { interpreted beautified } }
}
}
}
}
}
Variables
{
"name": "eth"
}
Output
{
"data": {
"domain": {
"canonical": {
"name": {
"interpreted": "eth",
"beautified": "eth"
}
},
"subdomains": {
"edges": [
{
"node": {
"canonical": {
"name": {
"interpreted": "wrapnation.eth",
"beautified": "wrapnation.eth"
}
}
}
},
{
"node": {
"canonical": {
"name": {
"interpreted": "katrenpadu.eth",
"beautified": "katrenpadu.eth"
}
}
}
},
{
"node": {
"canonical": {
"name": {
"interpreted": "roppp.eth",
"beautified": "roppp.eth"
}
}
}
},
{
"node": {
"canonical": {
"name": {
"interpreted": "sfmpfvtoicv2ok.eth",
"beautified": "sfmpfvtoicv2ok.eth"
}
}
}
},
{
"node": {
"canonical": {
"name": {
"interpreted": "sfmpfv44d0mig.eth",
"beautified": "sfmpfv44d0mig.eth"
}
}
}
},
{
"node": {
"canonical": {
"name": {
"interpreted": "sfmpfv44d0res.eth",
"beautified": "sfmpfv44d0res.eth"
}
}
}
}
]
}
}
}
}

Output matches a point in time snapshot GraphQL response from our sepolia-v2 ENSNode instance. Live output depends on the configuration of your ENSNode instance and ENS state updates.

Back to Examples