Agent skill · Backend & API

sendblue-api

Send and receive iMessage, SMS, and RCS from application code via the Sendblue HTTP API — text, media, group messages, send styles, reactions, typing indicators, status callbacks, and inbound webhooks.

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

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

Facts
Files in the skill folder: 1
SKILL.md size: 9 KB
Bundled scripts: none
Declared author: AnthonyFirth
Path: skills/sendblue/sendblue-api/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

# Sendblue API ## Overview Sendblue is a REST API that sends iMessage (blue bubbles), SMS, and RCS from a provisioned phone number. Everything is plain JSON over HTTPS — no SDK is required. The API covers outbound 1:1 and group sends, iMessage effects, reactions, typing indicators, status callbacks, and inbound webhooks. ## When to Use This Skill - Use when writing application code (server, worker, function) that sends Sendblue messages as part of a long-running service. - Use when receiving inbound messages via webhooks. - Use when you need features the CLI does not expose: send styles, reactions, group messages, typing indicators, status callbacks, media uploads, or the contacts API beyond basic CRUD. - Reach for [[sendblue-cli]] instead for shell-context outbound: one-shot scripts, cron jobs, agent hooks, "ping me when X" workflows. ## How It Works ### Step 1: Authenticate ``` https://api.sendblue.com ``` Every request needs two headers: ``` sb-api-key-id: <YOUR_API_KEY_ID> sb-api-secret-key: <YOUR_API_SECRET> Content-Type: application/json ``` Keep both values server-side — never ship them to a browser or mobile client. ### Step 2: Send a message ```bash curl -X POST https://ap

What's inside
Steps it walks through
  1. Overview
  2. When to Use This Skill
  3. How It Works
  4. Step 1: Authenticate
  5. Step 2: Send a message
  6. Step 3: Track delivery
  7. Step 4: Receive inbound
  8. Core Endpoints
  9. Examples
  10. Example 1: Send with media, effects, and a status callback
  11. Example 2: Group message
  12. Example 3: React to a message
  13. Example 4: Inbound webhook payload (receive)
  14. Best Practices
Commands it runs
curl -X POST https://api.sendblue.com/api/send-message \
More from agentic-awesome-skills
All skills →
About this skill
What does the sendblue-api skill do?

Send and receive iMessage, SMS, and RCS from application code via the Sendblue HTTP API — text, media, group messages, send styles, reactions, typing indicators, status callbacks, and inbound webhooks.

How do I install it?

Run `npx skills add sickn33/agentic-awesome-skills --skill sendblue-api --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