Developer API

Meta Graph API Integration

Learn how MantionPlus securely connects to your Instagram account via the official Facebook and Instagram Graph APIs.

Meta Verification & Webhook Handshake

MantionPlus utilizes Meta's official Graph API. When a customer comments on your reel or post, Meta pushes a real-time HTTP POST request to our secure webhook listeners. We process the payload in milliseconds and send a response back through the Instagram messaging channel.

Incoming Payload Structure

Below is the standard payload sent by Meta webhooks when a customer messages your professional account:

{
  "object": "instagram",
  "entry": [
    {
      "id": "INSTAGRAM_BUSINESS_ACCOUNT_ID",
      "time": 1782495702,
      "messaging": [
        {
          "sender": { "id": "SENDER_PSID" },
          "recipient": { "id": "RECIPIENT_IGID" },
          "message": { "text": "INFO" }
        }
      ]
    }
  ]
}