GET krita.org HTTP 200598 ms20.1 KB$0.000094 captured Aug 7, 2026
krita.org, as data
One API turns any krita.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 598 ms
- Page size
- 20.1 KB of markdown, 182 lines
- Fields
- Business Name, Address, Phone, Category and 1 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This krita.org page cost $0.000094 to fetch.
Macro recording and playback exists in Krita, but it is not working well at this time.### Text Tool¶Since Krita 5.3, the Text Tool is quite advanced. The underlying text layout engines are quite different however, and in some places one is better than the other. A small overview:* A different way of handling Letter Spacing, which sometimes is used to do manual kerning. Within Krita, it’s best to use Type Setting Mode for this purpose.* An option where the whole paragraph is taken into account when line breaking, this is not available within Krita.* Similarly, all types (European, East Asian and Middle Eastern) of justification are more advanced.* Latin text that rotates when typeset vertically.* Width and height stretching of glyphs.* The ability to lay out text in multiple shapes.* Type Setting Mode has more flexibility in positioning glyphs arbitrarily.* Better support for bi-directional text, with unicode bidi selection.* The ability to align text by their hanging baseline.* A more flexible opentype feature selection system.Beyond that, Photoshop’s engine is one where ranges of text are styled, while Krita’s uses a tree system styled with CSS. This means that within Krita ranges can inherit properties, and some properties can be applied in a nested manner. See the Text Properties Docker for precise descriptions of each property.### Blending Modes While Transforming¶When you transform a layer or a selection in Krita, the transformation appears on the top of your layer stack ignoring the layer blending mode.Starting from Krita 5.0, the performance setting “Use in-stack preview in Transform Tool” allows for the layer blending mode to be previewed during transformation.### Photomerge¶ What Spider does on krita.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.
598 ms · $0.000094Page 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.krita.org/en/user_manual/introduction_from_other_software/introduction_from_photoshop.html?highlight=blur", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://docs.krita.org/en/user_manual/introduction_from_other_software/introduction_from_photoshop.html?highlight=blur", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://docs.krita.org/en/user_manual/introduction_from_other_software/introduction_from_photoshop.html?highlight=blur", {
return_format: "markdown",
});
console.log(page.content); What krita.org costs
Multiplied from the measured 20.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 krita.org.
The capture above took 598 ms and cost $0.000094. The same call takes any URL on krita.org.