GET rdstation.com.br HTTP 2001.8 s9.7 KB$0.000165 captured Aug 7, 2026
rdstation.com.br, as data
One API turns any rdstation.com.br 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 1.8 s
- Page size
- 9.7 KB of markdown, 263 lines
- Fields
- Title, Content, Date, Source
- Captured
- Aug 7, 2026
Free balance on signup, no card. This rdstation.com.br page cost $0.000165 to fetch.
# Releases* Create a new Pull Request with the label `version:release` and merge it.GitHub, like other services, doesn't allow you to create a Pull Request without at least one commit more than one base branch. To solve this it is necessary to create an extra commit:`git checkout -b empty-release --track origin/maingit commit --allow-empty -m "Release review"git push origin empty-releaseWe recommend generating a new Pull Request only if you can't execute the CI pipeline, it will mess up the git log and the `CHANGELOG.md` unnecessarily, otherwise **choose the first simplest approach**.Do not justify the creation of a new pull request with bureaucracy, such as updating some document or something, FrontHub Flow has been stressed as much as possible with all possible flows, any extra step will negatively impact the workflow.## Additional Release notesOnly the Pull Request title is used to compose the Changelog, but you can add more information by adding a `Release Notes` section in your PR.A common description of your pull request.## Release NotesHi there! 👋 This text will be included in the Changelog.This will create a special section at the top of the Changelog that collects all the additional release notes from merged PRs. Below is a sample of what it might look like:# v5.0.0 (Sat May 04 2019)### Release Notes#### 🐛 Bug Fix#### Authors: 1## Marked as releasedEvery time a new latest version is generated, automatically the following actions are performed:* Comments on the merged PR with the new version;* Comments on closed issues with the new version;* Adds a `released` label to the pull request;* Adds a `released` label to closed issues;**Warning**: Make sure that you create the released label on your project.This is very important to register the completion of all started discussions. All involved person will be notified by the repository's own notification system, in addition to facilitating future consultations on the subject. What Spider does on rdstation.com.br
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.
1.8 s · $0.000165Page to JSON
Spider reads the page and names the fields. Pass your own schema when you need exact keys.
Whole site
Follows rdstation.com.br'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://front-hub.rdstation.com.br/docs/lib-releases", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://front-hub.rdstation.com.br/docs/lib-releases", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://front-hub.rdstation.com.br/docs/lib-releases", {
return_format: "markdown",
});
console.log(page.content); What rdstation.com.br costs
Multiplied from the measured 9.7 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 rdstation.com.br.
The capture above took 1.8 s and cost $0.000165. The same call takes any URL on rdstation.com.br.