GET sellercenter.net HTTP 2002.4 s5.4 KB$0.000814 captured Aug 7, 2026
sellercenter.net, as data
One API turns any sellercenter.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 2.4 s
- Page size
- 5.4 KB of markdown, 131 lines
- Fields
- Business Name, Address, Phone, Category
- Captured
- Aug 7, 2026
Free balance on signup, no card. This sellercenter.net page cost $0.000814 to fetch.
**Home**Guides**API Reference**Changelog# GetCategoryTreehttps://api.sellercenter.net/?Action=GetCategoryTreeGet the list of all product categories.Retrieving recent requests…> This endpoint will be deprecated on July 2023 due to the release of our new Rest API. We recommend migrating your integration to the new version.> In our New REST API, we have provided the endpoint that replaces this one.`> https://sellercenter-api.[your-instance]/v2/category/tree> See below the links of our new documentation, select the link that corresponds to your integration.> https://sellercenter-api.theiconic.com.au/docs/> https://sellercenter-api.zalora.com.my/docs/> https://sellercenter-api.zalora.com.ph/docs/> https://sellercenter-api.zalora.com.hk/docs/> https://sellercenter-api.zalora.com.tw/docs/> https://sellercenter-api-staging.zalora.sg/docs/> https://sellercenter-api.zalora.co.id/docs/> https://sellercenter-api.zalora.com/docs/> https://api.sellercenter.com.br/docs/> https://sellercenter-api.dafiti.cl/docs/> https://sellercenter-api.dafiti.com.co/docs/> https://sellercenter-api.dafiti.com.ar/docs/> https://api.sellercenter.lamoda.ru/docs/> https://api.sellercenter.lamoda.ua/docs/> https://api.sellercenter.lamoda.kz/docs/The response's body is composed of the Categories collection, recursively containing Category resources, each of them is composed of the following fields:An unique identifier for this category across countriesId of the AttributeSet to be used in other API calls (ie: GetCategoriesByAttributeSet)List of all child categories (category resources)Defaults to GetCategoryTreeName of the function that is to be called. Mandatory and must be 'GetCategoryTree' in this case. If omitted, an 'E001: Parameter Action is mandatory' error is returned. If an unknown function string is supplied, an 'E008: Invalid Action' error message is returned.If supplied, must be either 'JSON' or 'XML'. If not supplied, 'XML' is assumed. What Spider does on sellercenter.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.
2.4 s · $0.000814Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Whole site
Follows sellercenter.net's own links, respects robots, streams pages as they land.
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://sellerapi.sellercenter.net/docs/getcategorytree", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://sellerapi.sellercenter.net/docs/getcategorytree", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://sellerapi.sellercenter.net/docs/getcategorytree", {
return_format: "markdown",
});
console.log(page.content); What sellercenter.net costs
Multiplied from the measured 5.4 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 sellercenter.net.
The capture above took 2.4 s and cost $0.000814. The same call takes any URL on sellercenter.net.