# GET View a Callback

```
https://openapi.paveapi.com/v1/callbacks/:event
```

This endpoint allows you to get all callback settings from requesting API Key.

| Headers | Type | Description |
| --- | --- | --- |
| **`API-Key`** | string | The API-Key that was provided for your account |
| **`API-Token`** | string | The API-Token used when the session was created |
| **`API-Timestamp`** | string | UTC Datetime string, example: 2021-05-30T12:49:19Z |

| Path Parameters | Type | Description |
| --- | --- | --- |
| **`event`** | string | Input one of the Supported Events, view [the list here](https://marketplace.pixelstudioperu.com/docs/integrations/developer-docs/callbacks/#supported-callback-events). |

#### Sample Response (200:Ok)

```
{
    "api_key": "<your_requested_api_key>",
    "data": {
        "event": "SESSION:STAGE_CHANGE",
        "url": "https://your_callback_url",
        "method": "POST",
        "headers": {
            "Authorization": "Bearer <jwt_token>"
        },
        "payload": {
            "source": "PAVE", // additional attributes to pass along; setting on create callback
        }
    },    
}
```
