skills/community/evolution-api/SKILL.md
Evolution API integration for WhatsApp messaging, instance management, webhooks, and chatbot orchestration. Use when: (1) Creating or managing WhatsApp instances via Evolution API, (2) Sending messages (text, media, audio, lists, buttons, reactions), (3) Configuring webhooks or event listeners, (4) Managing groups or contacts, (5) Integrating with Typebot, Chatwoot, Dify, or OpenAI through Evolution API. Triggers on: evolution-api, evolution api, whatsapp api, baileys, whatsapp integration, send whatsapp, whatsapp webhook.
npx skillsauth add pedronauck/skills evolution-apiInstall 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.
Open-source WhatsApp integration API supporting Baileys (WhatsApp Web) and official WhatsApp Business API (Cloud API). Built with Node.js + TypeScript + Express.js + Prisma.
All requests use the apikey header. Two levels of keys exist:
AUTHENTICATION_API_KEY env var. Has full access to all instances.apikey: YOUR_API_KEY
Every request follows this pattern:
curl --request <METHOD> \
--url https://<SERVER_URL>/<path>/{instanceName} \
--header 'Content-Type: application/json' \
--header 'apikey: <api-key>' \
--data '<json-body>'
POST /instance/create
{
"instanceName": "my-instance",
"integration": "WHATSAPP-BAILEYS",
"token": "optional-custom-token",
"qrcode": true,
"number": "5511999999999",
"rejectCall": true,
"msgCall": "I can't answer calls",
"groupsIgnore": true,
"alwaysOnline": true,
"readMessages": true,
"readStatus": true,
"syncFullHistory": true,
"webhook": {
"url": "https://your-server.com/webhook",
"byEvents": false,
"base64": true,
"headers": { "authorization": "Bearer token" },
"events": ["MESSAGES_UPSERT", "CONNECTION_UPDATE"]
}
}
Response (201):
{
"instance": {
"instanceName": "my-instance",
"instanceId": "af6c5b7c-ee27-4f94-9ea8-192393746ddd",
"status": "created"
},
"hash": { "apikey": "generated-instance-token" },
"qrcode": { "base64": "data:image/png;base64,..." }
}
The integration field accepts:
WHATSAPP-BAILEYS — Free, based on WhatsApp Web (Baileys library)WHATSAPP-BUSINESS — Official Meta Cloud API (requires Facebook App setup)GET /instance/connect/{instanceName}
Returns QR code as base64 for scanning with WhatsApp mobile app.
GET /instance/connectionState/{instanceName}
Returns: open, close, or connecting.
| Method | Endpoint | Description |
| ------ | ---------------------------------- | ------------------------- |
| GET | /instance/fetchInstances | List all instances |
| PUT | /instance/restart/{instance} | Restart instance |
| DELETE | /instance/logout/{instance} | Logout (keep instance) |
| DELETE | /instance/delete/{instance} | Delete instance entirely |
| POST | /instance/setPresence/{instance} | Set online/offline status |
POST /message/sendText/{instanceName}
{
"number": "5511999999999",
"text": "Hello from Evolution API!",
"delay": 1200,
"linkPreview": true,
"mentionsEveryOne": false,
"mentioned": ["[email protected]"]
}
Response (201):
{
"key": {
"remoteJid": "[email protected]",
"fromMe": true,
"id": "BAE594145F4C59B4"
},
"message": { "extendedTextMessage": { "text": "Hello from Evolution API!" } },
"messageTimestamp": "1717689097",
"status": "PENDING"
}
Number format: Use full international format without + sign. For groups, use the group JID (e.g., [email protected]).
Add quoted to any send payload:
{
"number": "5511999999999",
"text": "This is a reply",
"quoted": {
"key": { "id": "ORIGINAL_MESSAGE_ID" },
"message": { "conversation": "Original message text" }
}
}
POST /message/sendMedia/{instanceName}
{
"number": "5511999999999",
"mediatype": "image",
"mimetype": "image/png",
"caption": "Check this out",
"media": "https://example.com/image.png"
}
mediatype options: image, video, document.
media accepts a URL or base64-encoded string.
POST /message/sendWhatsAppAudio/{instanceName}
{
"number": "5511999999999",
"audio": "https://example.com/audio.mp3"
}
Audio is automatically converted to WhatsApp PTT (push-to-talk) format.
| Endpoint | Body fields | Notes |
| --------------------------------------- | -------------------------------------------------------------------------- | -------------------------- |
| POST /message/sendLocation/{instance} | number, latitude, longitude, name, address | |
| POST /message/sendContact/{instance} | number, contact: [{fullName, wuid, phoneNumber}] | |
| POST /message/sendReaction/{instance} | key: {remoteJid, fromMe, id}, reaction | Use empty string to remove |
| POST /message/sendPoll/{instance} | number, name, values[], selectableCount | |
| POST /message/sendList/{instance} | number, title, description, buttonText, footerText, sections[] | |
| POST /message/sendButtons/{instance} | number, title, description, buttons[], footer | |
| POST /message/sendSticker/{instance} | number, sticker (URL or base64) | |
| POST /message/sendStatus/{instance} | type, content, statusJidList[], caption | Post to WhatsApp Status |
POST /webhook/set/{instanceName}
{
"webhook": {
"enabled": true,
"url": "https://your-server.com/webhook",
"webhookByEvents": false,
"webhookBase64": true,
"events": [
"MESSAGES_UPSERT",
"MESSAGES_UPDATE",
"CONNECTION_UPDATE",
"SEND_MESSAGE"
]
}
}
When webhookByEvents is true, events are sent to {url}/{EVENT_NAME} (e.g., /webhook/MESSAGES_UPSERT).
GET /webhook/find/{instanceName}
For the complete list of available events, see references/events.md.
| Method | Endpoint | Body | Description |
| ------ | ------------------------------------------- | --------------------------------- | -------------------------- |
| POST | /chat/checkIsWhatsApp/{instance} | numbers: ["5511..."] | Verify numbers on WhatsApp |
| POST | /chat/findMessages/{instance} | where: {key: {remoteJid}} | Search messages |
| POST | /chat/findChats/{instance} | {} | List all chats |
| POST | /chat/findContacts/{instance} | where: {id} | Search contacts |
| POST | /chat/markMessageAsRead/{instance} | readMessages: [{remoteJid, id}] | Mark as read |
| POST | /chat/archiveChat/{instance} | chat, archive: true | Archive/unarchive chat |
| DELETE | /chat/deleteMessageForEveryone/{instance} | key: {remoteJid, fromMe, id} | Delete for everyone |
| POST | /chat/updateMessage/{instance} | number, text, key: {id} | Edit sent message |
| POST | /chat/sendPresence/{instance} | number, presence | Show typing/recording |
| POST | /chat/getBase64/{instance} | message: {key} | Get media as base64 |
presence values: composing, recording, paused.
| Method | Endpoint | Body / Params | Description |
| ------ | -------------------------------------------- | ---------------------------------- | -------------------------- |
| POST | /group/create/{instance} | subject, participants[] | Create group |
| GET | /group/fetchAllGroups/{instance} | query: getParticipants=true | List all groups |
| GET | /group/findGroupInfos/{instance}?groupJid= | query param | Group details |
| GET | /group/inviteCode/{instance}?groupJid= | query param | Get invite link |
| GET | /group/participants/{instance}?groupJid= | query param | List members |
| POST | /group/updateParticipant/{instance} | groupJid, action, participants[] | Add/remove/promote/demote |
| POST | /group/updateSetting/{instance} | groupJid, action | Lock/unlock group settings |
| POST | /group/toggleEphemeral/{instance} | groupJid, expiration | Set disappearing messages |
| DELETE | /group/leaveGroup/{instance} | groupJid | Leave group |
action for participants: add, remove, promote, demote.
| Method | Endpoint | Description |
| ------ | ------------------------------------------- | -------------------- |
| POST | /profile/fetchProfile/{instance} | Fetch profile info |
| POST | /profile/updateProfileName/{instance} | Update display name |
| POST | /profile/updateProfileStatus/{instance} | Update status text |
| POST | /profile/updateProfilePicture/{instance} | Update avatar |
| DELETE | /profile/removeProfilePicture/{instance} | Remove avatar |
| GET | /profile/fetchPrivacySettings/{instance} | Get privacy settings |
| POST | /profile/updatePrivacySettings/{instance} | Update privacy |
Evolution API supports chatbot integrations configured per-instance:
| Integration | Endpoints prefix | Description |
| ----------- | ---------------- | ------------------------------------- |
| Typebot | /typebot/ | Conversational bot flows |
| Chatwoot | /chatwoot/ | Help desk / CRM |
| OpenAI | /openai/ | AI-powered bots + audio transcription |
| Dify | /dify/ | AI agent platform |
| n8n | /n8n/ | Workflow automation |
| Flowise | /flowise/ | LLM flow builder |
| EvoAI | /evoai/ | Evolution's own AI bot |
Each integration follows the CRUD pattern: create, find, update, delete, settings, change-status, fetch-session.
Beyond webhooks, Evolution API can deliver events via:
POST /rabbitmq/set/{instance}POST /sqs/set/{instance}POST /websocket/set/{instance}development
Guides a founder through the full Y Combinator batch application end-to-end. A 10-phase workflow that captures the live YC form, profiles the founders, stress-tests the idea via an embedded grill loop, runs a mandatory 5-agent parallel external research pass on the startup, drafts every form field with anti-pattern and accepted-example checks, produces founder-video bullet notes (no script), runs a final adversarial gate, generates paste-ready submission answers, unlocks an interview-prep simulator after invite, and supports reapplicant delta tracking and post-decision post-mortems. Writes a documented markdown trail under a user-chosen workspace. Use when a founder wants to prepare a YC batch application, build their founder video, drill mock YC interview questions, or reapply with delta evidence. Don't use for pitch-deck design unrelated to YC, generic startup advice without applying, or post-funding work.
development
Authors engineering blog posts end-to-end: launch deep-dives, incident postmortems, architecture migrations, performance case studies, tutorials, AI/agent system writeups, security disclosures, and research-to-product translations. Picks the correct archetype, plans the abstraction ladder, enforces an evidence cadence (diagrams, benchmarks, profiles, traces, code, ablations), tunes voice against publisher house styles (Datadog, Vercel, GitHub, AWS, Meta, Cloudflare, Jane Street), and runs a pre-publish gate for narrative momentum and disclosure ethics. Use when drafting a new engineering post, restructuring a draft that feels flat, deciding which evidence form belongs where, validating that depth and product context are balanced, or preparing a postmortem, migration, or performance narrative for external publication. Do not use for API reference documentation, README authoring, marketing copy, release notes, generic SEO content, ghost-written executive thought leadership, or non-engineering long-form essays.
tools
Provides guardrails for user-facing UI work: usability heuristics, accessibility floors, design-system discipline, component states, microcopy, motion, dark mode, responsive behavior, and human-AI UX. Use when designing, generating, reviewing, or refactoring visible product surfaces such as components, pages, dashboards, forms, dialogs, loading/empty/error states, or AI interfaces. Do not use for backend-only work, infrastructure, CLI/TUI design, or pure documentation editing.
tools
Master TypeScript's advanced type system including generics, conditional types, mapped types, template literals, and utility types for building type-safe applications. Use when implementing complex type logic, creating reusable type utilities, or ensuring compile-time type safety in TypeScript projects. Don't use for plain JavaScript, runtime validation libraries (Zod, Yup), or basic TypeScript syntax questions.