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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=122",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 123,
    "results": [
        {
            "start": 832667561,
            "stop": 832682413
        },
        {
            "start": 832682865,
            "stop": 832682901
        },
        {
            "start": 832684443,
            "stop": 832685953
        },
        {
            "start": 832686353,
            "stop": 832688354
        },
        {
            "start": 832689169,
            "stop": 832690143
        },
        {
            "start": 832690878,
            "stop": 832698892
        },
        {
            "start": 832701217,
            "stop": 832702360
        },
        {
            "start": 832703030,
            "stop": 832706537
        },
        {
            "start": 832707216,
            "stop": 832713611
        },
        {
            "start": 832715036,
            "stop": 832716661
        },
        {
            "start": 832717520,
            "stop": 832718491
        },
        {
            "start": 832719982,
            "stop": 832720109
        },
        {
            "start": 832720539,
            "stop": 832725238
        },
        {
            "start": 832725638,
            "stop": 832732827
        },
        {
            "start": 832732829,
            "stop": 832772754
        },
        {
            "start": 832774035,
            "stop": 832801933
        },
        {
            "start": 832803849,
            "stop": 832804490
        },
        {
            "start": 832804890,
            "stop": 832804960
        },
        {
            "start": 832805472,
            "stop": 832806651
        },
        {
            "start": 832807186,
            "stop": 832807588
        }
    ]
}