# Get all events
You can return a list with all of your events.
GET
/events/
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H
"Authorization: Token \<your_64_char_api_key>"
"https://<your_app_subdomain>.user.com/api/public/events/"
# Response
{
"count": 5,
"next": null,
"previous": null,
"results": [
{
"id": 160,
"name": "send_ebook_1"
},
{
"id": 161,
"name": "test_event"
},
{
"id": 185,
"name": "test"
},
{
"id": 188,
"name": "timestamp-test"
},
{
"id": 193,
"name": "timestamp-test123"
}
]
}