Skip to main content
PlugKit exposes a connected account’s inbox as conversations and messages.

List conversations

curl "https://api.plugkit.co/v1/conversations?accountId=ACCOUNT_ID" \
  -H "Authorization: Bearer sk_your_key"

Read a conversation

curl https://api.plugkit.co/v1/conversations/CONVERSATION_ID/messages \
  -H "Authorization: Bearer sk_your_key"

Send a reply

curl -X POST https://api.plugkit.co/v1/conversations/CONVERSATION_ID/messages \
  -H "Authorization: Bearer sk_your_key" \
  -H "Content-Type: application/json" \
  -d '{ "text": "Thanks for reaching out! 👋" }'
New inbound messages are delivered in real time via webhooks — see Webhooks. Reading and sending require the instagram_business_manage_messages permission.