Rusprofile Scraper
Spider read rusprofile.ru in 1.5 s without a browser and returned 668 lines of clean markdown.
# ООО "Лента"ОГРН 1037832048605 от 4 ноября 2003 г. Дата регистрации 04.11.2003ИНН/КПП 7814148471 781401001 Уставный капитал 1 271 714 853,55 руб.Коды статистики ОКПО 71385386 ОКАТО 40270000000 ОКТМО 40322000000 ОКФС 16 Частная собственность ОКОГУ 4210011 Хозяйственные общества и товарищества с участием иностранных юридических и (или) физических лиц, а также лиц без гражданства ОКОПФ 12300 Общества с ограниченной ответственностьюadezhda.podosinova@lenta.comГенеральный директор ООО "Лента" - Сорокин Владимир Леонидович (ИНН 781696873462). Организации присвоен ИНН 7814148471, ОГРН 1037832048605. Подробное описание >Юридическое лицо зарегистрировано 04.11.2003 по адресу 197374, город Санкт-Петербург, ул. Савушкина, д. 112 литера б. Размер уставного капитала - 1 271 714 853,55 рублей. Статус: действующая с 08.04.2025. ОКПО 71385386.До Сорокин Владимир Леонидович, руководителем "Лента" являлись: Прокофьев Сергей Валерьевич (ИНН 773303698440), Тинга Херман Францискус Йоханнес (ИНН 781443653307), Матузова Мария Петровна (ИНН 781018868671), Дюннинг Ян Гезинюс (ИНН 781441199053). Ранее ООО "Лента" находилось по адресу: 197374, город Санкт-Петербург, улица Савушкина, 112.Состоит на учете в налоговом органе Межрайонная инспекция ФНС России №26 по Санкт-Петербургу с 28 апреля 2012 г., присвоен КПП 781401001. Регистрационный номер СФР 1093889812. < Свернуть## Финансы## УчредителиДоля: 1 262 896 783 руб. (99,31%) ИНН: 3906399157## Надёжность## Риски сотрудничества## Исполнительные производства## Товарные знакиДругие товарные знаки: SUPER, УТКОНОС, UTKONOS, PAW WOW, TERRACAFE и ещё 10 Все товарные знаки## Госзакупки## События## Проверки## Топ компаний в отрасли## Филиалы и представительства## Арбитражные дела## Суды общей юрисдикции## Реестры ФНС## Отчёты и документы## Связи## Сообщения о сущфактах## Краткая справка The same call, in code.
The capture above came back as markdown. These examples add a key, so you get browser rendering, proxies, and concurrency on rusprofile.ru.
import { SpiderBrowser } from "spider-browser";
const spider = new SpiderBrowser({
apiKey: process.env.SPIDER_API_KEY!,
});
await spider.connect();
const page = spider.page!;
await page.goto("https://rusprofile.ru");
// No selectors, no schema. Spider reads the page and names the fields.
const data = await page.scrape();
console.log(data);
await spider.close(); import { Spider } from "@spider-cloud/spider-client";
const spider = new Spider({ apiKey: process.env.SPIDER_API_KEY! });
const result = await spider.scrapeUrl("https://www.rusprofile.ru", {
return_format: "markdown",
});
console.log(result); Ready for volume? Get an API key →
Fields you can pull.
Spider names these from the page. The capture above came back as markdown; the same
call with return_format: "json" returns them as keys.
What rusprofile.ru costs to scrape.
The capture above cost $0.000059 to fetch. Pricing is $1 per GB of pre-transformation bandwidth plus $0.001 per CPU minute, so a page like this one lands at a fraction of a cent. Failed requests are billed at $0.
- Free balance on signup
- No card required to test
- Balance never expires
Run it keyless, no account
More International scrapers.
Mercado Libre Scraper
Extract product listings, seller ratings, pricing in local currencies, and shipping data from Mercado Libre.
Rakuten Scraper
Extract product listings, store ratings, cashback offers, and pricing data from Rakuten Japan marketplace.
Flipkart Scraper
Extract product listings, seller data, pricing in INR, and delivery estimates from Flipkart India store.
Start scraping rusprofile.ru.
You already have the call. A key raises the rate limit and turns on browser rendering, proxies, and concurrency. Balance never expires, and top-ups go through secure checkout.