API Client
SkillDev toolsMake API requests and parse JSON responses
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the API Client skill
What this skill tells your AI
The instructions your AI receives, as published by edictum-ai/edictum in tests/fixtures/skills/api-client/SKILL.md and read by ahel’s review.
Make HTTP requests and parse JSON responses.
GET request with JSON parsing
curl -s https://api.example.com/users | jq '.data[]'
POST with authentication
curl -s -X POST https://api.example.com/items \
-H "Authorization: Bearer $API_TOKEN" \
-H "Content-Type: application/json" \
-d '{"name": "test"}' | jq '.id'
Paginated fetch
curl -s "https://api.example.com/items?page=1&limit=100" | jq '.items[] | .name'
curl -s "https://api.example.com/items?page=2&limit=100" | jq '.items[] | .name'
Health check
curl -s https://api.example.com/health | jq '.status'
Signals
- GitHub stars
- 31
- Forks
- 6
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
api-client- Source
- github.com/edictum-ai/edictum