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/H2_BURST_CAT3/segments?format=api&page=122
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=123",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=121",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 122,
    "results": [
        {
            "start": 818867486,
            "stop": 818867923
        },
        {
            "start": 818868104,
            "stop": 818878202
        },
        {
            "start": 818879607,
            "stop": 818879863
        },
        {
            "start": 818880044,
            "stop": 818885134
        },
        {
            "start": 818885716,
            "stop": 818888211
        },
        {
            "start": 818888611,
            "stop": 818893775
        },
        {
            "start": 818894300,
            "stop": 818909643
        },
        {
            "start": 818909646,
            "stop": 818917613
        },
        {
            "start": 818918167,
            "stop": 818918177
        },
        {
            "start": 818918779,
            "stop": 818919489
        },
        {
            "start": 818919493,
            "stop": 818932783
        },
        {
            "start": 818932964,
            "stop": 818943529
        },
        {
            "start": 818943533,
            "stop": 818945592
        },
        {
            "start": 818946116,
            "stop": 818952130
        },
        {
            "start": 818952689,
            "stop": 818954218
        },
        {
            "start": 818954623,
            "stop": 818955403
        },
        {
            "start": 818955584,
            "stop": 818956543
        },
        {
            "start": 818956724,
            "stop": 818960802
        },
        {
            "start": 818961390,
            "stop": 818966143
        },
        {
            "start": 818966324,
            "stop": 818967043
        }
    ]
}