skills/api-integration/SKILL.md
Connect to REST APIs, handle authentication, and process JSON responses
npx skillsauth add tatat/agents-playground api-integrationInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Connect to external REST APIs and process responses.
| Method | Header Format |
|--------|---------------|
| API Key | X-API-Key: <key> |
| Bearer | Authorization: Bearer <token> |
| Basic | Authorization: Basic <base64> |
import requests
response = requests.get(
"https://api.example.com/v1/resource",
headers={"Authorization": "Bearer TOKEN"},
params={"limit": 100}
)
data = response.json()
development
Extract structured data from web pages using CSS selectors and XPath
tools
Plan trips with itineraries, budgets, and local recommendations
tools
Translate text between languages while preserving meaning and context
development
Generate unit tests, integration tests, and test fixtures for code