GET metrix.ir HTTP 2003.8 s9.0 KB$0.000133 captured Aug 7, 2026
metrix.ir, as data
One API turns any metrix.ir 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 3.8 s
- Page size
- 9.0 KB of markdown, 278 lines
- Fields
- Title, Content, Date, Source and 2 more
- Captured
- Aug 7, 2026
Free balance on signup, no card. This metrix.ir page cost $0.000133 to fetch.
## }These instructions will get you setup to use `WebSDK` in your project.1. `npm install @metrixorg/websdk`Initialize Metrix at the start of your application by calling the following method:1. `import { init } from '@metrixorg/websdk';`Place the following `` inside `<head>` of your project.`> ). or to always use latest version replace3. `Metrix.init(APP_ID, API_KEY, config);`1. `Metrix.init(APP_ID, API_KEY, config);`Your application identifier. You can find this id in your Metrix dashboard under *Settings* > *App Info*.You can find this key in dashboard.config to enabling PUSH_SDK and track user location## API#### authorizeUserTo authorize user to Metrix server, you must call this API.1. `authorizeUser(username: string) : void`name of user to authorize to metrix servers#### newEventEach interaction that the user has with your application can be introduced as an *Event* in your dashboard and application in order for Metrix to collect and present its statistics.2. `newEvent(slug: string, customAttributes: {[key: string]: string}): void`generated event slug in dashboardany custom attribute related to eventYou can use Metrix to track any events in your application.Suppose you want to track every tap on a button.You would have to create a new event in the Events Management section of your dashboard (*Settings* > *Events* > *Add event*) and retrieve the generated `slug` for the event.The `slug` is to be used in the application code to send the event to Metrix library.So In your button’s onClick method you could then invoke the Metrix `newEvent` method providing the event `slug` andoptionally some attributes named `customAttributes` related to the event like the following:2. `import { newEvent } from '@metrixorg/websdk'`5. `// Send an event with custom attribute`8. `attributes['last_name'] = 'Bagheri';`9. `attributes['manufacturer'] = 'Nike';` What Spider does on metrix.ir
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.
3.8 s · $0.000133Page 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://metrix.ir/en/docs/automation-new-web-1-2-1/", "return_format": "markdown"}' from spider import Spider
app = Spider()
params = {"return_format": "markdown"}
page = app.scrape_url("https://metrix.ir/en/docs/automation-new-web-1-2-1/", params=params)
print(page[0]["content"]) import { Spider } from "@spider-cloud/spider-client";
const app = new Spider();
const [page] = await app.scrapeUrl("https://metrix.ir/en/docs/automation-new-web-1-2-1/", {
return_format: "markdown",
});
console.log(page.content); What metrix.ir costs
Multiplied from the measured 9.0 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 metrix.ir.
The capture above took 3.8 s and cost $0.000133. The same call takes any URL on metrix.ir.