Skip to main content

Browsing the Marketplace

Find skills by keyword:
ap search "python testing"
Or via the API:
curl "https://api.agentpowers.ai/v1/search?q=python+testing"

Filter & Sort

The GET /v1/skills endpoint supports filtering and sorting:
ParameterValuesDescription
categoryAny category slugFilter by category
typeskill, agentFilter by type
sortnewest, price_asc, price_desc, downloadsSort order
price_filterfree, paidFilter by price
security_statuspass, warnFilter by security status
curl "https://api.agentpowers.ai/v1/skills?sort=downloads&price_filter=free&type=skill"

Categories

Browse by category:
curl "https://api.agentpowers.ai/v1/categories"

Installing Free Skills

Free skills require no authentication:
ap install skill-slug
The CLI downloads and extracts the package to ~/.claude/skills/skill-slug/.

Purchasing Paid Skills

  1. Run ap install paid-skill-slug
  2. The CLI opens Stripe Checkout in your browser
  3. Complete payment
  4. The skill installs automatically

License Codes

Each purchase generates a license code (XXXX-XXXX-XXXX format). Use it to install on another machine:
ap install paid-skill --license ABCD-EFGH-IJKL
Or redeem via the API:
curl -X POST "https://api.agentpowers.ai/v1/purchases/redeem" \
  -H "Authorization: Bearer TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"license_code": "ABCD-EFGH-IJKL"}'

Checking Purchases

View your purchase history:
curl -H "Authorization: Bearer TOKEN" \
  "https://api.agentpowers.ai/v1/purchases"

ZIP Downloads (claude.ai Web)

For claude.ai web users who cannot use the CLI, skills are available as ZIP downloads:
GET /v1/skills/{slug}/download/zip
This returns the package as a ZIP file with Content-Disposition: attachment.