GET undocs.org HTTP 200171 ms3.1 KB$0.000036 captured Aug 7, 2026
undocs.org, as data
One API turns any undocs.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 171 ms
- Page size
- 3.1 KB of markdown, 39 lines
- Fields
- Business Name, Address, Phone, Category and 1 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This undocs.org page cost $0.000036 to fetch.
Welcome to the United NationsEvery document in ODS has a unique document symbol, which is all you need to create a link. For more information on document symbols, please see the Research Guide to United Nations Document Symbols by the Dag Hammarskjöld Library.## Linking to a DocumentTo link to a document, you only need its unique document symbol.**Example**: Let's use the United Nations Millennium Declaration as an example, with the document symbol *A/RES/55/2*.3. **Final URL**: https://docs.un.org/A/RES/55/2If no specific language is chosen, an intermediate window will appear, prompting users to select a language for the document. This ensures compliance with the United Nations' commitment to multilingualism.## Linking to a Document in a Specific LanguageLinking to a document in a specific language is a common use case. For this, simply add the language code to the URL.**Example**: To view the Millennium Declaration (*A/RES/55/2*) in English:2. **Language**: en for English (available language codes are: **ar** for Arabic, **zh** for Chinese, **en** for English, **fr** for French, **ru** for Russian, **es** for Spanish)4. **Final URL**: https://docs.un.org/en/A/RES/55/2## Linking to a Document in a Specific Language and PageIf you need to link to a specific page within a document in a specific language, add &page=(pagenumber) to the end of the URL. Note that this only works if a language is specified.**Example**: To link to page 3 of the Millennium Declaration (*A/RES/55/2*) in English:5. **Final URL**: https://docs.un.org/en/A/RES/55/2?page=3## Linking Directly to a Document Without FramesTo link directly to a document file (bypassing frames), append ?direct=true to the end of the URL. This functionality requires specifying the language of the document.**Example**: To link directly to the Millennium Declaration (*A/RES/55/2*) in English:5. **Final URL**: https://docs.un.org/en/A/RES/55/2?direct=true What Spider does on undocs.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.
171 ms · $0.000036Page 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://undocs.org/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://undocs.org/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://undocs.org/", {
return_format: "markdown",
});
console.log(page.content); What undocs.org costs
Multiplied from the measured 3.1 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 undocs.org.
The capture above took 171 ms and cost $0.000036. The same call takes any URL on undocs.org.