Arsenal API

Programmatic access to the curated, locally verified skill catalog with quality ratings, permission manifests, and deploy feedback.

REST APIJSON responsesRate limitedOpenAPI 3.0
bolt

Quick Start

1. Register for an API key

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'
GET/api/skills

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

Parameters

NameTypeDescription
search stringFuzzy text search (name, description, author)
category stringFilter by category (e.g. "Agent 基建")
rating S|A|B|C|DFilter by quality rating
limit numberPage size (1-100, default 50)
offset numberPagination offset

Request 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.

Request Example

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

Response

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

API Tiers & Quotas

Free

$0

100 req/day

Most Popular

Arsenal

$19/mo

1,000 req/day

Arsenal Pro

$49/mo

10,000 req/day