GET ensdata.net HTTP 200123 ms3.6 KB$0.00003 captured Aug 7, 2026
ensdata.net, as data
One API turns any ensdata.net page into markdown, structured JSON, its link graph or a screenshot, and crawls the whole site the same way. The panel shows the real response we captured.
- Render mode
- Plain HTTP, no browser needed
- Response
- HTTP 200 in 123 ms
- Page size
- 3.6 KB of markdown, 42 lines
- Fields
- Business Name, Address, Phone, Category and 2 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This ensdata.net page cost $0.00003 to fetch.
# Look up Ethereum Name Service text records for any address and get them back in convenient JSON format.## Is there an API?Append the wallet address or ENS after ensdata.net, that’s it. You don’t need any API keys.`ensdata.net/lochie.eth``ensdata.net/0xd55Ab78034FcB6349830d0CfdFEFB6A8051d2685``ensdata.net/👽👽👽.eth``ensdata.net/jack.w.eth.id``ensdata.net/gregskril.nfty.eth`## Is this free to use?Yes, it’s free for everyone thanks to ENS Small Grants.If you wanna support this project send some eth to ens.pug.eth## Can this API return an ENS if I give it a wallet address?Yep, it will return the ENS associated with that address, a primary ENS, and records for that primary ENS. Emoji + subdomains + offchain names are supported.## What if I only want to get the avatar?Setting up your own decentralized infra can be a pain, so I got you covered with a special endpoint.`https://ensdata.net/media/avatar/dwr.eth``https://ensdata.net/media/avatar/0xE7bd51Dc30d4bDc9FDdD42eA7c0a283590C9D416`## What if I only want to get the content hash?There is a special endpoint for that too.It always returns fresh data without caching.`https://ensdata.net/content-hash/v1rtl.eth`## What about those pesky EIP155:1/ERC721 NFT records?When NFTs are detected, the response will include an additional key with an appended _url at the end which points to a CDN that hosts the image.`"cover": "eip155:1/erc721:0x1e4c...cfff/89"`will produce an extra field of`"cover_url": "https://gateway.pinata.cloud/ipfs/bafy...nsoe"`You can render that extra URL as an image or do it yourself and set up your own data provider / CDN that handles the original NFT record.## Can you match a wallet address or ENS to a Farcaster profile?Yes, but only if that address or ENS is associated with a Farcaster profile.You also need to use a special ?farcaster=true parameter.`https://ensdata.net/dwr.eth?farcaster=true` What Spider does on ensdata.net
Same key, five endpoints. The numbers under a cell were measured on this page.
Page to markdown
Clean text for RAG and LLM context, boilerplate removed. The lane that runs without a key.
123 ms · $0.00003Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Rendered capture
Real Chromium, full-page PNG. The same call also returns the rendered HTML.
The call behind the panel
This request produced the response above. Paste it with your key and you get the same bytes.
curl -X POST https://api.spider.cloud/scrape \
-H "Authorization: Bearer $SPIDER_API_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://ensdata.net/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://ensdata.net/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://ensdata.net/", {
return_format: "markdown",
});
console.log(page.content); What ensdata.net costs
Multiplied from the measured 3.6 KB page. Estimates round to the cent.
1 GB of transfer costs $1, plus $0.001 per CPU minute, and failed requests cost $0. Crawling daily? The Unlimited plan is a flat monthly rate.
Point this at the rest of ensdata.net.
The capture above took 123 ms and cost $0.00003. The same call takes any URL on ensdata.net.