> For the complete documentation index, see [llms.txt](https://docs.sendstackhq.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sendstackhq.com/live-tracking-apis/events/fetch-single-event.md).

# Fetch Single Event

### Fetch Single event

Fetches a single event

<mark style="color:green;">`GET`</mark> `{baseUrl}/tracker-events/:eventId`

#### Sample Success Response

```
//Sample success response
{
    "status": true,
    "message": "Tracker events successfully retrieved",
    "data": [
        {
            "id": "67b41824ac676a37981df66b",
            "eventType": "OVER_SPEEDING_WARNING",
            "eventConfig": {
                "speedLimit": 15
            },
            "eventNotification": {
                "acceptedMediums": [
                    {
                        "channel": "email",
                        "isEnabled": true,
                        "defaultEmail": ["test@gmail.com"]
                    },
                    {
                        "channel": "sms",
                        "isEnabled": false,
                        "defaultPhone": [ "+2349088888888" ]
                    },
                    {
                        "channel": "inApp",
                        "isEnabled": true
                    }
                ],
                "status": "active"
            }
        },
    ]
}
```
