Arsenal API

Programmatic access to 37,000+ curated skills with quality ratings, permission manifests, and deploy feedback.

REST APIJSON responsesFree tier: 100 req/day

Quick Start

1. Register for an API key (free)

curl -X POST 'https://openclaw-foundry-api.maoyuan-wen-683.workers.dev/api/tenants/register' \
  -H 'Content-Type: application/json' \
  -d '{"name":"my-app"}'

2. Use the API key to search skills

curl -H 'Authorization: Bearer ocf_YOUR_KEY' \
  'https://openclaw-foundry-api.maoyuan-wen-683.workers.dev/api/arsenal/search?q=browser&rating=S'

Free

$0

100 req/day

  • checkPublic endpoints
  • checkArsenal search
  • checkCompatibility matrix
POPULAR

Arsenal

$19/mo

1,000 req/day

  • checkEverything in Free
  • checkChange alerts email
  • checkBulk export
  • checkPriority support

Arsenal Pro

$49/mo

10,000 req/day

  • checkEverything in Arsenal
  • checkBlueprint AI generation
  • checkArena battles
  • checkCustom webhooks
GET/api/skills

Search and browse skills with pagination, category/rating filters, and fuzzy search.

Parameters

searchstringFuzzy text search (name, description, author)
categorystringFilter by category (e.g. "Agent 基建")
ratingS|A|B|C|DFilter by quality rating
limitnumberPage size (1-100, default 50)
offsetnumberPagination offset

Example

curl 'https://openclaw-foundry-api.maoyuan-wen-683.workers.dev/api/skills?search=browser&rating=S&limit=5'

Response

{ "meta": {...}, "total": 42, "skills": [{ "name": "...", "rating": "S", "deploySuccessRate": 0.95, "permissionManifest": {...} }] }
GET/api/skills/categories

Get all categories with skill counts.

Example

curl 'https://openclaw-foundry-api.maoyuan-wen-683.workers.dev/api/skills/categories'

Response

{ "categories": { "Agent 基建": 1649, "搜索与研究": 2440, ... } }

Rate Limits

TierDaily LimitReset
Public (no auth)Unlimited--
Free100 requests00:00 UTC
Arsenal ($19/mo)1,000 requests00:00 UTC
Arsenal Pro ($49/mo)10,000 requests00:00 UTC
PartnerUnlimited--