For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
SDKsHelp CenterLog inSign up
    • Overview
  • Getting Started
    • API Mechanics
    • Quickstart
  • Guides
    • Communications API
    • Troubleshooting
    • Events
    • Changelog
  • Comms API Reference
      • Summary
      • POSTSend Push Notifications
      • GETList Push Notifications
      • GETFetch a Push Notification
      • GETFetch a Push Notification Operation
      • GETList Push Notification Operations
LogoLogo
SDKsHelp CenterLog inSign up
Comms API ReferencePush Notifications

Push Notifications

POST
/v1/PushNotifications
1curl -X POST 'https://comms.twilio.com/preview/PushNotifications' \
2--header 'Content-Type: application/json' \
3--data '{
4 "to": [
5 { "provider": "FCM", "token": "token" }
6 ],
7 "content": {
8 "title": "Limon Eats",
9 "text": "Your order is on the way!"
10 }
11}'\
12-u $TWILIO_ACCOUNT_SID:$TWILIO_AUTH_TOKEN
Try it
Was this page helpful?
Previous

Send Push Notifications

Next
Built with

*Use PushNotifications to send to app users via FCM & APNS *

Push Notifications supports:

Feature
Sending a Push Notification to a single recipient
Sending Push Notifications to many recipients in a single request
Sending to both stored Profiles or directly specified token
Sending Push Notifications to stored Audiences with per-recipient content personalization
Sending Push Notifications with templated content that reference traits of your stored Profiles
Sending Push Notifications scheduled for future delivery.