Skip to main content
HasData publishes an agentskills.io-compatible skill at:
https://docs.hasdata.com/skill.md
It packages the entire HasData surface — endpoints, parameters, per-row credit costs, decision rules, polling/results endpoints, and non-obvious use-case patterns — into a single context-budget-aware reference your agent loads on demand instead of crawling the docs at runtime.

Install for Claude Code

Claude Code reads skills from ~/.claude/skills/<name>/SKILL.md (user-scoped, applies everywhere) or .claude/skills/<name>/SKILL.md (project-scoped, lives in the repo). The on-disk filename must be uppercase SKILL.md.
mkdir -p ~/.claude/skills/hasdata
curl -fsSL https://docs.hasdata.com/skill.md -o ~/.claude/skills/hasdata/SKILL.md
Restart Claude Code (or reload skills) and you’re done. Claude Code activates the skill automatically when your prompt matches its description — web scraping, SERP, Google Maps/Trends/Flights, Amazon, Zillow, lead enrichment, RAG ingestion, etc. — or when you invoke it explicitly with /hasdata. To pin it to a single project, install into the repo instead:
mkdir -p .claude/skills/hasdata
curl -fsSL https://docs.hasdata.com/skill.md -o .claude/skills/hasdata/SKILL.md

Other clients

The file conforms to the Agent Skills specification. Any compatible client works — including tooling that consumes npx skills add https://docs.hasdata.com. For everything else, drop the file into the agent’s skills directory under whatever naming convention it expects.

Updating

The skill changes when the API does. Re-run the curl once in a while to refresh it.