GET azure.cn HTTP 2002.7 s8.1 KB$0.000022 captured Aug 7, 2026
azure.cn, as data
One API turns any azure.cn 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 2.7 s
- Page size
- 8.1 KB of markdown, 195 lines
- Fields
- Title, Content, Date, Source
- Captured
- Aug 7, 2026
Free balance on signup, no card. This azure.cn page cost $0.000022 to fetch.
Azure AI Search supports blob indexing and SharePoint document indexing for the following document formats:* JSON (see Indexing JSON blobs)* KML (XML for geographic representations)* Microsoft Office formats: DOCX/DOC/DOCM, XLSX/XLS/XLSM, PPTX/PPT/PPTM, MSG (Outlook emails), XML (both 2003 and 2006 WORD XML)* Open Document formats: ODT, ODS, ODP* Plain text files (see also Indexing plain text)## Document format propertiesThe following table summarizes processing for each document format, and describes the metadata properties extracted by a blob indexer and the SharePoint indexer.Document format / content typeNOTE: If you need to extract multiple document fields from a CSV blob, see Index CSV blobs|Extract text, including embedded documentsDOCM (application/vnd.ms-word.document.macroenabled.12)DOCX (application/vnd.openxmlformats-officedocument.wordprocessingml.document)Extract text, including attachmentsExtract text from all documents in the archiveHTML (text/html or application/xhtml+xml)Strip HTML elements and extract text`metadata_content_encoding`|Extract textNOTE: If you need to extract multiple document fields from a JSON blob, see Index JSON blobs|KML (application/vnd.google-earth.kml+xml)Strip XML elements and extract textMSG (application/vnd.ms-outlook)`metadata_message_from_email`Extract text, including text extracted from attachments. `metadata_message_to_email`, `metadata_message_cc_email`, and `metadata_message_bcc_email` are string collections. The rest of the fields are strings.ODP (application/vnd.oasis.opendocument.presentation)ODS (application/vnd.oasis.opendocument.spreadsheet)ODT (application/vnd.oasis.opendocument.text)Extract text, including embedded documents (excluding images)PPT (application/vnd.ms-powerpoint)PPTM (application/vnd.ms-powerpoint.presentation.macroenabled.12)PPTX (application/vnd.openxmlformats-officedocument.presentationml.presentation) What Spider does on azure.cn
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.
2.7 s · $0.000022Page 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://docs.azure.cn/en-us/search/search-blob-metadata-properties", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://docs.azure.cn/en-us/search/search-blob-metadata-properties", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://docs.azure.cn/en-us/search/search-blob-metadata-properties", {
return_format: "markdown",
});
console.log(page.content); What azure.cn costs
Multiplied from the measured 8.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 azure.cn.
The capture above took 2.7 s and cost $0.000022. The same call takes any URL on azure.cn.