Crawlora Agent Skills are ready-to-install Agent Skills that teach any coding agent (Claude Code, Codex, Cursor, Copilot, …) how to fetch structured public web data with the Crawlora REST API — search engines, marketplaces, social, finance, maps, app stores, media, and reviews — getting clean JSON instead of HTML to parse.
Each skill is standalone REST: a tiny curl helper hitting
https://api.crawlora.net/api/v1 with your CRAWLORA_API_KEY. No MCP setup
required — install one skill and go. (If you'd rather use agent-native MCP tools,
see crawlora-mcp.)
Get a free Crawlora API key — 2,000 credits/mo, no card — at crawlora.net. Billing is pay-on-success (only
2xxresponses are charged).
| Skill | What it does | Platforms |
|---|---|---|
crawlora |
Umbrella catalog skill — fetch structured data from any of the 467 Crawlora endpoints; teaches auth, credits, and the full catalog. | all 38 |
product-price-research |
Find products, compare prices/sellers, pull marketplace reviews. | Amazon, eBay, Shopify, Shop.app |
youtube-research |
Transcripts, comments, video/channel metadata, search — no yt-dlp. |
YouTube |
app-review-mining |
App details, reviews, ratings, rankings, similar apps (ASO). | App Store, Google Play |
serp-keyword-research |
SERP snapshots, autocomplete keyword ideas, Google Trends. | Google, Bing, Brave, Google Trends |
Install one skill (or several, or all) straight from this repo:
# one skill
npx skills add github.com/Crawlora-org/crawlora-skills --skill youtube-research
# several
npx skills add github.com/Crawlora-org/crawlora-skills \
--skill product-price-research --skill serp-keyword-research
# everything
npx skills add github.com/Crawlora-org/crawlora-skills --allThen set your key once:
export CRAWLORA_API_KEY=sk_your_key_hereThis repo also ships a .claude-plugin/marketplace.json,
so you can add it as a marketplace and install the bundle:
/plugin marketplace add Crawlora-org/crawlora-skills
/plugin install crawlora-skills@crawlora-skills
Every skill bundles a scripts/crawlora.sh helper and a reference/ file listing
the exact endpoints, methods, and params it uses. The agent reads SKILL.md, picks
the right endpoint, and calls it:
# GET (key=value params)
scripts/crawlora.sh /amazon/search k="standing desk" | jq '.'
scripts/crawlora.sh /youtube/transcript/dQw4w9WgXcQ | jq '.'
# POST (JSON body)
scripts/crawlora.sh -X POST /google/search '{"searchOption":{"q":"web scraping api"}}' | jq '.'crawlora-skills/
├── .claude-plugin/marketplace.json # also a Claude Code plugin marketplace
├── lib/crawlora.sh # shared REST helper template (GET + POST)
├── scripts/
│ ├── tools.json # endpoint catalog (source of truth, from crawlora-mcp)
│ ├── generate.mjs # emits each skill's reference/ + bundled helper
│ └── validate.mjs # frontmatter + body-length lint
└── skills/<name>/{SKILL.md, scripts/crawlora.sh, reference/…}
The endpoint catalog comes from Crawlora's published API catalog (vendored as
scripts/tools.json). Regenerate the per-skill references after a catalog change:
node scripts/generate.mjs # write
node scripts/generate.mjs --check # CI parity check
node scripts/validate.mjs # lint all SKILL.md- Website: https://crawlora.net · Docs & Playground: https://crawlora.net/docs · https://crawlora.net/playground
- API base:
https://api.crawlora.net/api/v1· Pricing: https://crawlora.net/pricing - Agent-native MCP server: https://github.com/Crawlora-org/crawlora-mcp
- Agent Skills (Anthropic): https://docs.claude.com/en/docs/agents-and-tools/agent-skills/overview
MIT. The Crawlora API itself is a hosted SaaS governed by the Crawlora terms; this repository contains the skill definitions, helper, and manifests.