# Get user timeline
You can return a whole timeline for a specific user.
GET
/users/:id/timeline/
Attributes | Type | Required | Description |
---|---|---|---|
id | integer | no | A unique identifier for the user which is given by User.com automatically. |
# Request
- CURL
- JavaScript
- PHP
- Python
curl -X GET -H
"Authorization: Token " "https://<your_app_subdomain>.user.com/api/public/users/:id/timeline/"
# Response
{
"count": 39,
"next": "https://<your_app_subdomain>.user.com/api/public/users/:id/timeline/?page=2",
"previous": null,
"results": [
{
"id": 36050384,
"datetime": "2016-12-06T08:46:11.977980Z",
"name": "ping hit",
"content": {
"url": "http://example.org/?key=_58467aac9a159",
"title": "page view"
}
},
{
"id": 21639759,
"datetime": "2016-11-08T08:47:19.449107Z",
"name": "event data",
"content": {
"url": "/clients/events/550/",
"data": [],
"title": "timestamp-eventData"
}
},
{
"id": 15445067,
"datetime": "2016-11-02T14:36:28.446479Z",
"name": "ping hit",
"content": {
"url": "http://example.org/sandbox.html",
"title": "page view"
}
}
]
}