Agent skill · Data & Analytics

api-integration

Designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL...

Nick44,086★ · +407/wk · 1 repos on radarProfile →
claude-codecodexcursorMIT
Install
npx skills add sickn33/agentic-awesome-skills --skill api-integration --agent claude-code

Same command for any agent — swap --agent for codex, cursor, copilot.

Facts
Files in the skill folder: 1
SKILL.md size: 5 KB
Bundled scripts: none
Path: skills/api-integration/SKILL.md
Open the folder on GitHub →
Where it comes from
Stars: 44,414 · +328 this week
Language: Python
Read our review of the source →

Weekly change comes from our own snapshots, not the repository page — it measures attention, not adoption.

From the SKILL.md

# API Integration Skill ## When to Use Use this skill when you need designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL... Design integration patterns, webhook flows, event pipelines, and API composition strategies. --- ## Webhook Design ### Outbound Webhook Endpoint (from your system to 3rd party) ``` POST {subscriber_url} Headers: Content-Type: application/json X-Webhook-Signature: hmac-sha256=<sig> X-Webhook-Event: order.created X-Webhook-Delivery: <uuid> X-Webhook-Timestamp: <unix-epoch> ``` **Payload envelope** ```json { "event": "order.created", "delivery_id": "uuid", "created_at": "ISO8601", "data": { ... } } ``` **Signature verification** (receiver side): ```python import hmac, hashlib expected = hmac.new(secret.encode(), payload_bytes, hashlib.sha256).hexdigest() assert f"sha256={expected}" == request.headers["X-Webhook-Signature"] ``` ### Inbound Webhook Registration API ``` POST /api/v1/webhooks — register subscriber URL + events GET /api/v1/w

What's inside
Steps it walks through
  1. When to Use
  2. Webhook Design
  3. Outbound Webhook Endpoint (from your system to 3rd party)
  4. Inbound Webhook Registration API
  5. API Chaining / Composition Pattern
  6. Event-Driven Architecture
  7. Event Schema (CloudEvents spec)
  8. Topics / Queues design
  9. Saga Pattern (Distributed Transaction)
  10. Outbox Pattern (reliable event publishing)
  11. Integration Checklist
  12. After Completing the API Integration Design
  13. Limitations
More from agentic-awesome-skills
All skills →
About this skill
What does the api-integration skill do?

Designs event-driven architectures, webhook systems, API chaining flows, ETL pipelines, and integration patterns between services. Use whenever the user asks about webhooks, event streaming, API composition, connecting two or more APIs, building pipelines, Pub/Sub, Kafka topics, ETL...

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill api-integration --agent claude-code` — it drops the skill into your project so the agent can pick it up. Swap the --agent value for codex, cursor or copilot if you use one of those.

Where does this skill come from?

From sickn33/agentic-awesome-skills, a repository with 44,414 stars. We read it straight from the repository tree rather than a submitted listing, so what you see here is what is actually published.

Is a popular skill a good skill?

Not necessarily. Stars measure attention, not adoption — a repository can trend for a week and be abandoned. That is why we show the weekly change from our own snapshots next to the total, instead of a single flattering number.

Keep going