← ClaudeAtlas

web-utilities-researchlisted

General-purpose web-intelligence utilities via the Crawlora API — scrape any URL to clean markdown/HTML, extract schema-conforming JSON from a page, fingerprint a site's tech stack, geocode addresses, compare cost of living between cities/countries (Numbeo), look up a company's import/export trade records (ImportYeti), check a domain's traffic (SimilarWeb), or resolve a brand's identity from its domain. Use for one-off utility lookups that don't fit a specific platform skill.
Crawlora-org/crawlora-skills · ★ 0 · Web & Frontend · score 72
Install: claude install-skill Crawlora-org/crawlora-skills
# Web intelligence utilities A grab-bag of general-purpose lookups that don't belong to one platform: raw URL scraping/extraction, tech-stack fingerprinting, geocoding, cost-of- living comparisons, import/export trade records, site traffic, and brand resolution — all as normalized JSON from the Crawlora API. ## When to use this skill - "Scrape this URL and give me clean markdown/HTML." - "Pull structured data (a schema) out of this page." - "What is this website built with?" (tech-stack fingerprint) - "What's the address/coordinates for X?" (geocoding, forward or reverse) - "How much more expensive is living in <city A> vs <city B>?" (Numbeo) - "What does this company import, and from whom?" (ImportYeti — US customs records) - "How much traffic does this site get?" (SimilarWeb) - "Resolve this domain to a brand name/logo." ## Setup (one-time) - Get a free Crawlora API key (2,000 credits/mo, no card) at [https://crawlora.net](https://crawlora.net?utm_source=github&utm_medium=referral&utm_campaign=crawlora-skills). - `export CRAWLORA_API_KEY=sk_your_key_here` - All requests: `x-api-key: $CRAWLORA_API_KEY` against `https://api.crawlora.net/api/v1`. Missing/invalid key → `401`. ## How it works 1. **Scrape / extract / tech-stack (`POST`)** — `POST /web/scrape` returns a URL as markdown/HTML/links/metadata (`{"url": "...", "formats": ["markdown"]}`); `POST /extract` returns JSON conforming to a schema you supply (`{"url": "...", "schema": {...}}`); `POST /web/tech