GET ipify.org HTTP 200114 ms12.8 KB$0.000064 captured Aug 7, 2026
ipify.org, as data
One API turns any ipify.org 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 114 ms
- Page size
- 12.8 KB of markdown, 340 lines
- Fields
- Business Name, Address, Phone, Category and 1 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This ipify.org page cost $0.000064 to fetch.
Don't wait, run one of the code samples below in your terminal and check`$ curl 'https://api.ipify.org?format=json'`$ curl 'https://api64.ipify.org?format=json'### If you need to get the geolocation data by IP, please refer to our## Why ipify?Ever needed to get your public IP address programmatically?Maybe you're provisioning new cloud servers andneed to know your IP -- maybe you're behind a corporate firewall and need to tunnel information -- whateverthe reason: sometimes having a public IP address API is useful!### You should use ipify because:You can use it without limit (even if you're doing millions of requests per minute.It works flawlessly with both IPv4 and IPv6 addresses, so no matter what sort of technologyyou're using, there won't be issues.It's always online and available, and its infrastructure is powered by Heroku, which means thatregardless of whether the server running the API dies, or if there's an enormous tornado whichdestroys half of the east coast, ipify will still be running!ipify is completely open source (check out the GitHub repository).No visitor information is ever logged. Period.Lastly, ipify is open source so there's no need to worry about the domain name disappearing inthree years or anything like that: ipify is here to stay!## API UsageUsing ipify is ridiculously simple. You have three options. You can get your public IP directly (in plaintext), you can get your public IP in JSON format, or you can get your public IP information in JSONP format(useful for Javascript developers).### IPv4`https://api.ipify.org?format=json``https://api.ipify.org?format=jsonp``https://api.ipify.org?format=jsonp&callback=getip`### IPv6The api6.ipify.org is used for IPv6 request only. If you don't have an IPv6 address, the request will fail.`https://api6.ipify.org?format=json` What Spider does on ipify.org
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.
114 ms · $0.000064Page 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://ipify.org/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://ipify.org/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://ipify.org/", {
return_format: "markdown",
});
console.log(page.content); What ipify.org costs
Multiplied from the measured 12.8 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 ipify.org.
The capture above took 114 ms and cost $0.000064. The same call takes any URL on ipify.org.