Return the segments for a given timeline for a run.

Query parameters:

  • start=<int>: Initial GPS time of the desired GPS interval.
  • stop=<int>: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
  • pagesize=<int>: Number of results to return per page.
GET /api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2017
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2018",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2016",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2017,
    "results": [
        {
            "start": 858429408,
            "stop": 858430950
        },
        {
            "start": 858431010,
            "stop": 858435123
        },
        {
            "start": 858435124,
            "stop": 858435425
        },
        {
            "start": 858435426,
            "stop": 858435430
        },
        {
            "start": 858435432,
            "stop": 858436385
        },
        {
            "start": 858436480,
            "stop": 858436590
        },
        {
            "start": 858436650,
            "stop": 858437610
        },
        {
            "start": 858437670,
            "stop": 858437790
        },
        {
            "start": 858437910,
            "stop": 858437970
        },
        {
            "start": 858455027,
            "stop": 858455571
        },
        {
            "start": 858455871,
            "stop": 858457987
        },
        {
            "start": 858457993,
            "stop": 858458037
        },
        {
            "start": 858458043,
            "stop": 858461926
        },
        {
            "start": 858464008,
            "stop": 858464684
        },
        {
            "start": 858464857,
            "stop": 858465150
        },
        {
            "start": 858465210,
            "stop": 858465397
        },
        {
            "start": 858465507,
            "stop": 858465659
        },
        {
            "start": 858465959,
            "stop": 858467537
        },
        {
            "start": 858468962,
            "stop": 858469367
        },
        {
            "start": 858469373,
            "stop": 858469681
        }
    ]
}