> ## Documentation Index
> Fetch the complete documentation index at: https://docs.energy.nayax.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Webhooks Overview

Nayax Energy Core allows networks to create webhooks for certain events that happen in the Nayax Energy Core system. Webhooks are an excellent way to respond to events in real-time as they happen, enabling you to build integrations that react immediately to changes.

## Supported Events

Currently the following event types are supported:

| Event Type           | Description                                                    |
| -------------------- | -------------------------------------------------------------- |
| `ocpp.message`       | Raw OCPP messages sent to and from charging stations           |
| `asset.connectivity` | Updates when a station connects or disconnects from the system |

## Getting Started

To get started with webhooks:

1. [Create an API client](/api) if you don't already have one. If you have an existing API client, it may not have the scopes required to interact with the Webhooks API. If this is the case, please reach out to our support to gain access.
2. Create a webhook endpoint using the [Webhooks API](/api/webhooks/webhook-endpoints/list-webhook-endpoints)
3. Store the webhook secret securely - it's only shown once at creation time
4. Implement signature validation in your endpoint (see [Validating Signatures](/guides/webhooks/validating-signatures))

## Next Steps

* [Event Types](/guides/webhooks/event-types) - Detailed documentation for each event type with examples
* [Events and Deliveries](/guides/webhooks/events-and-deliveries) - Understand the webhook data model
* [Validating Signatures](/guides/webhooks/validating-signatures) - Secure your webhook endpoint
* [Delivery and Retries](/guides/webhooks/delivery-and-retries) - Learn about automatic retries and resending
* [Best Practices](/guides/webhooks/best-practices) - Tips for production-ready webhook handlers
