Skip to main content
Sender actions give feedback without sending a message. Use typing_on / typing_off for the typing indicator and mark_seen to show the seen receipt.

Request

curl -X POST "${INSTAGRAM_GRAPH_API_URL}/${INSTAGRAM_USER_ID}/messages" \
  -H "Authorization: Bearer ${INSTAGRAM_ACCESS_TOKEN}" \
  -H "Content-Type: application/json" \
  -d '{
  "recipient": {
    "id": "17841400000000001"
  },
  "sender_action": "typing_on"
}'