Ecosystem
Scavio Agent Skills
An Agent Skill is a folder with a SKILL.md that teaches a coding agent how to do one job. The Scavio skills teach it the Scavio API: which endpoints exist for a platform, what parameters they take, what the response looks like, and what each call costs in credits. Once a skill is installed, the agent calls the API correctly on its own, with no wrapper and no glue code. Scavio publishes 51 skills in the open Agent Skills format: one umbrella skill that covers all 50 platforms, plus one skill per platform.
npx skills CLI installs from. Browse every skill and its description before installing.One key for every skill
SCAVIO_API_KEY environment variable. Set it once and the umbrella and every per-platform skill pick it up, with no per-skill configuration.Install everything with one skill
The scavio umbrella is one skill that covers all 50 platforms. Your agent carries a single description in its context, and the detail for a platform loads only when that platform is used.
npx skills add scavio-ai/skills --skill scavioThe command clones the repo, picks out the scavio skill, and copies it into the skill folder of each coding agent it detects on your machine. What lands there is a router SKILL.md plus a references/ folder with one file per platform. The router holds the platform table, the shared request format, a cost gate the agent runs before every paid call, and the failure handling; each reference holds that platform's endpoints, parameters and measured response shapes.
Or install one skill per platform
The per-platform skills are the same content split up. Each one has its own trigger and loads about a fifth of what the umbrella loads per call, which suits a project that uses two or three platforms. Install the umbrella or the per-platform skills, not both.
# Pick the platforms you use
npx skills add scavio-ai/skills --skill amazon-product-data --skill google-search-api
# See every skill and its description before installing
npx skills add scavio-ai/skills --list
# Install into a specific agent only
npx skills add scavio-ai/skills --skill scavio -a claude-code
# Everything, into every agent on the machine
npx skills add scavio-ai/skills --allSet your API key
Every skill reads your key from the SCAVIO_API_KEY environment variable. Add the export to your shell profile so it persists across sessions.
export SCAVIO_API_KEY=your_keyGet a key at the Scavio Dashboard. A new account starts with 50 credits, no card required, and the key is created for you at signup under API Keys.
Use it
Ask your agent in plain language. The skill identifies the platform, opens the matching reference, shows the credit cost of the call, runs it, and returns structured JSON with credits_used and credits_remaining from the response.
# Example agent prompts
"Get the follower count and bio for the Instagram account nike"
"Find standing desks under $300 on Amazon and list price, rating and review count"
"Search Reddit for opinions on FastAPI vs Django and summarize the top thread"
"Pull the last 20 ads Nike is running from the Meta Ad Library"Supported clients
The skills are plain folders in the Agent Skills format, so any client that reads the format can load them. The npx skills CLI installs into the ones it detects.
| Client | Notes |
|---|---|
| Claude Code | Installs to .claude/skills/; pass -g for user-wide |
| Cursor, Codex, OpenCode, Goose, OpenHands | Detected automatically by the CLI |
| OpenClaw | Also available from ClawHub; see the OpenClaw guide |
| Hermes Agent | Install the per-platform skills; the umbrella exceeds the Hermes 50-file cap |
| Any other Agent Skills client | Clone the repo and point the client at a skill folder |
The 50 platform skills
Skill names say what they fetch, not who publishes them, so they match the way people search a registry.
| Group | Skills |
|---|---|
| Search | google-search-api, google-ai-mode-api, google-news-api, google-trends-api, google-maps-api |
| Commerce | amazon-product-data, ebay-product-data, walmart-product-data, target-product-data, home-depot-product-data, google-shopping-api, aliexpress-product-data, etsy-product-data, tiktok-shop-api |
| Social and video | instagram-scraper-api, tiktok-scraper-api, youtube-data-api, twitter-scraper-api, reddit-search-api, linkedin-scraper-api, facebook-scraper-api, threads-net-api, pinterest-api, twitch-api, douyin-scraper-api, weibo-scraper-api, kuaishou-scraper-api |
| Travel | airbnb-scraper-api, booking-com-hotel-data, google-hotels-api, google-flights-api, tripadvisor-reviews-api |
| Jobs and reviews | indeed-jobs-api, glassdoor-salary-data, g2-software-reviews-api, capterra-reviews-api, yelp-business-data |
| Real estate | zillow-property-data, redfin-property-data |
| App stores | apple-app-store-api, google-play-store-api |
| Companies and code | sec-edgar-api, companies-house-api, github-api |
| Ads | google-ads-transparency-api, meta-ad-library-api, tiktok-ad-library-api, linkedin-ad-library-api |
| Utility | url-to-markdown-api, website-screenshot-api |
Credits
A skill call costs exactly what the same API call costs. Most endpoints are 1 credit; the ones that differ (Instagram at 2 to 10, YouTube transcripts at 8, LinkedIn job detail at 30, G2 at 5) are stated in the skill before the agent calls them, and the umbrella makes the agent quote the total for a job before spending. See pricing for plans and rate limits for the concurrency each plan allows.
Next steps
- Browse the skills on skills.sh
- Scavio MCP Server: the same API as tools for any MCP client
- OpenClaw guide: installing from ClawHub
- Quickstart: call the API directly