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