agentsclimarketplace

Chatwoot api

Skill fxckcode/chatwoot-skills/skills/chatwoot-api

Agent skills for Chatwoot. Integrate Chatwoot into any system — channels, live chat, Captain AI, webhooks, API, and migrations.

Install
npx -y skills add fxckcode/chatwoot-skills --skill chatwoot-api

Assembled from the repository path, not quoted from the project. Check it against their README if it does not work.

2 things to look at

  • 21 days oldThe repository was created 21 days ago. New is not bad, but a brand new repository carrying a familiar-sounding name is the shape a typosquat arrives in, and there has been no time for anyone else to find a problem with it.
  • 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.

What its author says it does

Copied from the file, not written here

Use Chatwoot REST API, webhooks, and WebSocket for custom integrations. Use when building custom workflows, automating Chatwoot programmatically, or integrating with external systems via API.

SKILL.md

3.0 KB, as published. Nobody here has run it

Chatwoot API

Integrate with Chatwoot via REST API, webhooks, and WebSocket.

Authentication

Use a Personal Access Token or Account Token:

curl -H "api_access_token: YOUR_TOKEN" \
     https://app.chatwoot.com/api/v1/

Generate tokens: Settings → Profile → Access Token See articles/how-to/how-to-find-your-personal-access-token-in-chatwoot.md.

Key Endpoints

EndpointPurpose
GET /api/v1/accounts/{id}/inboxesList inboxes
POST /api/v1/accounts/{id}/inboxesCreate inbox
GET /api/v1/accounts/{id}/conversationsList conversations
POST /api/v1/accounts/{id}/conversationsCreate conversation
POST /api/v1/accounts/{id}/conversations/{id}/messagesSend message
GET /api/v1/accounts/{id}/contactsList contacts
POST /api/v1/accounts/{id}/contactsCreate contact
GET /api/v1/accounts/{id}/webhooksList webhooks
POST /api/v1/accounts/{id}/webhooksCreate webhook

Full API reference: references/self-hosted/api-reference-introduction.md

API Inbox Pattern

Send messages via API channel:

curl -X POST https://app.chatwoot.com/api/v1/accounts/{id}/conversations/{id}/messages \
  -H "api_access_token: YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{"content": "Hello from API!", "message_type": "outgoing"}'

See articles/other-channels/how-to-create-an-api-channel-inbox.md.

Webhooks

Configure Chatwoot to POST events to your URL:

# Settings → Integrations → Webhook
# Events arrive as JSON POST to your webhook URL

Events

  • conversation_created, conversation_updated
  • message_created, message_updated
  • contact_created, contact_updated

See articles/apps-integrations/how-to-use-webhooks.md.

WebSocket

Subscribe to real-time events:

const socket = new WebSocket('wss://app.chatwoot.com/cable');
// Channels:
// - Room::ConversationInboxChannel (inbox-scoped)
// - Room::AccountChannel (account-wide)

See articles/advanced-features/how-to-setup-a-web_socket-connection.md.

Integrations

IntegrationArticle
Slackarticles/apps-integrations/how-to-answer-conversations-from-slack.md
Dialogflowarticles/apps-integrations/how-to-integrate-your-dialogflow-chatbot-with-chatwoot.md
OpenAIarticles/apps-integrations/openai.md
Google Translatearticles/apps-integrations/how-to-translate-your-messages-with-google-translate.md
Dyte Videoarticles/apps-integrations/how-to-enable-video-calls-with-dyte-integration.md
Lineararticles/apps-integrations/how-to-track-issues-and-features-with-linear-integration.md
Cloudflare Videoarticles/apps-integrations/how-to-enable-video-calls-with-cloudflare-realtime_kit.md

Keep looking

Skills are one crate of 328,083. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.