Airalo Developer Platform
  1. Notifications
Airalo Developer Platform
  • OVERVIEW
    • Introduction
    • Attribute descriptions
    • FAQ
    • Quick start
      • Step 1: Request access token
      • Step 2: Get packages
      • Step 3: Submit order
      • Step 4: Get installation instructions
    • User journeys
      • Purchase journey
      • Top-up journey
    • Guides
      • How to set up a brand for eSIMs Cloud link sharing
      • How to get the eSIMs Cloud sharing link through API
      • How to generate the QR code for an eSIM
      • eSIM installation methods for API Partners
  • REST API
    • Introduction
    • Rate limits
    • Error handling
    • Go live checklist
    • Endpoints
      • Authenticate
        • Request access token
      • Browse packages
        • Get packages
      • Place order
        • Submit order
        • Submit order async
        • Future orders
        • eSIM voucher
      • Install eSIM
        • Get eSIM
        • Get installation instructions
      • Monitor usage
        • Get usage (data, text & voice)
      • Place top up order
        • Submit top-up order
        • Get top-up package list
        • Get eSIMs list
        • Get eSIM package history
      • Manage orders & eSIMs
        • Get order list
        • Cancel future orders
        • Get order
        • Update eSIM brand
        • Future Orders
      • Compatible devices
        • [Deprecated] Get compatible device list
        • Get compatible device lite list
      • Notifications
        • Airalo webhooks opt-in and flow
        • Webhooks guide
        • Webhook definition
        • Notification: Low data
          • Opt in
          • Get notification details
          • Opt out
        • Notification: Credit limit
          • Opt in
          • Get notification details
          • Opt out
        • Notification: Async orders
          • Opt in
          • Get notification details
          • Opt out
        • Webhook simulator
          POST
      • Check balance
        • Get balance
      • Request refund
        • Request refund
  • SDKs
    • Introduction
    • SDK vs. REST API
    • Technical notes
  • WOOCOMMERCE PLUGIN
    • Introduction
    • Guides
      • How to install the Airalo Plugin for WooCommerce
      • How to customize the "My eSIMs" page colors in WooCommerce
      • How to convert prices into your local currency
  • SHOPIFY APP
    • Introduction
    • Guides
      • How to install the Airalo Shopify App
      • How to set up prices in Shopify
  1. Notifications

Webhook definition

A webhook is a method in the context of Airalo’s API that allows us to seamlessly push real-time data updates to your designated endpoint URL. This ensures timely and efficient data synchronization between our systems and yours.
Important: Whenever you perform an opt-in, the webhook_url parameter is checked by the system via a HEAD request. Your endpoint must respond with 200 OK for the opt-in to be considered successful.
We currently support three types of webhooks:
- Async Order
- Low Data Notification
- Credit Limit Notification

Custom header for payload signing#

To enhance the security and integrity of the transmitted data, our webhook implementation includes a custom header for payload signing. This is an HMAC value generated with the SHA-512 algorithm. You are strongly encouraged to validate this header in your requests to ensure the authenticity and integrity of the payload.
Header name: airalo-signature
Examples on how to verify the integrity of the received webhook event:

Response examples#

Below are response examples for an HTTP 200 request:


// Credit Limit Notification Example
{
   "message": "Surpassed 80% of the credit limit balance",
   "remaining": 225.35
}


// Low Data Notification Example
{
   "level": "3days", // possible values "1days", "3days", "75%", "90%"
   "package_name": "bonbon-7gb-10days",
   "remaining_percentage": 43,
   "iccid": "87123123456889019"
}
Modified at 2025-08-21 07:04:18
Previous
Webhooks guide
Next
Opt in
Built with