
Introduction
Hi there, my name is Vitor Ribeiro, and I am a Solutions Architect at KORE Wireless.
As part of my work with customers, I help onboard teams into our developer ecosystem — including features like Event Streams, which provide real-time data delivery for KORE products, including Super SIM.
This article will show you how to configure Destinations, create Streaming Rules, and receive events using a Webhook.
It’s inspired by the official documentation but written with a more practical, step-by-step approach.

Prerequisites
Event Streams are available on the KORE Developer Console.
You will need:
- Contracted for KORE SUPER SIM or registered account at KORE Console)
- Access to the KORE Developer Console
- A reachable HTTPS Webhook endpoint.
If you are not a KORE Wireless customer and want access to these services, contact us here.
You don’t need advanced programming knowledge, but you should be familiar with concepts like:

Overview
Event Streams allow you to receive real-time events from KORE products delivered to a destination you configure.
The core components are:
| Component | Description |
|---|---|
| Destinations | Where events are delivered (Webhook or AWS Kinesis). |
| Streaming Rules | Define which events should be delivered and to which destination. |
| Event Types & Event Schemas | The structure and versioning of the JSON payloads you will receive. |
This article focuses on helping you set up an end-to-end flow that begins with event delivery and finishes with a working webhook receiver.
Creating a Destination
A Destination represents where Event Streams should deliver your data.
You can choose:
- A Webhook (recommended for simple setups and testing)
- An AWS Kinesis Stream (recommended for production)

Creating a Webhook Destination
Log into the KORE Developer Portal.
Navigate to Event Streams → Destinations.
Select “+ Create”.
Choose Kore Webhook as the destination type.
Provide:
- Destination URL — must be a reachable HTTPS endpoint
- HTTP Method — typically
POST
Save the destination.
Once saved, open the Destination and use “Test Event” to confirm that KORE can reach your endpoint.
If the test fails, confirm your firewall rules, SSL certificate, or public exposure of your endpoint.
Creating a Streaming Rule
A Streaming Rule defines which event types you want and where they should go.
Creating a New Rule
- Go to Event Streams → Streaming Rules.
- Select “+ Create”.

- Configure:
- Rule Status →
EnabledorDisabled - Destination → select the destination created previously
- Streaming Rule Name
- Product Group → Connectivity
- Event Types → choose individual event types
- Schema Version → apply globally or per event type
- Save your rule.
- Once the rule is Enabled, events will begin flowing immediately.
Use Disabled if you are not ready to receive events yet.
Understanding Event Types & Schemas
You can browse all KORE event types in Event Streams → Events.
Events follow the CloudEvents 1.0 specification:
| |
Why schemas matter:
- They help ensure consistent parsing
- They provide versioning for long-term compatibility
- They make downstream analytics easier
Building a Webhook Server + Heatmap
Below is a simple Python + FastAPI webhook listener adapted from KORE’s Super SIM Event Streams example plotting START/UPDATE AND ENDED events.
You can download the code from my GitHub repository here. You can read more about the KORE SUPER SIM Heatmap here.
Expose it publicly using something Cloudflare Tunnels:
Then set your Destination URL to:
| |
Testing Your Setup
Test the Destination
Use the “Test Event” button in the Destination details on the Developer Portal.
Your server should print the test event.
Trigger Real Events (Super SIM Example)
When using Super SIM, you will receive lifecycle events such as:
connection.attachment.acceptedconnection.data-session.startedconnection.data-session.updatedconnection.data-session.ended
These events are perfect for dashboards, analytics, or alerting pipelines.
Considerations
Event Streams are powerful, but you should design your system with these best practices in mind:
- Events may be batched — up to 50 in a single request
- Events may be duplicated — dedupe using the CloudEvents
id - Events may arrive out of order — rely on the
timeproperty - Webhook endpoints must respond quickly (< 5 seconds)
For large-scale deployments, consider using AWS Kinesis or a message queue downstream.
If you have any questions, feel free to reach out to me here.
Available Resources
Developer Portal
Visit the Developer Portal for documentation, API reference, and schema exploration.
GitHub
KORE offers a GitHub repository with code samples:
4
More Event Streams examples will be added over time.
