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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=351",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=349",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 350,
    "results": [
        {
            "start": 847720953,
            "stop": 847720969
        },
        {
            "start": 847720971,
            "stop": 847720993
        },
        {
            "start": 847720994,
            "stop": 847721044
        },
        {
            "start": 847721045,
            "stop": 847721097
        },
        {
            "start": 847721098,
            "stop": 847721121
        },
        {
            "start": 847721122,
            "stop": 847721127
        },
        {
            "start": 847721129,
            "stop": 847721140
        },
        {
            "start": 847721141,
            "stop": 847721170
        },
        {
            "start": 847721171,
            "stop": 847721172
        },
        {
            "start": 847721173,
            "stop": 847721205
        },
        {
            "start": 847721209,
            "stop": 847721210
        },
        {
            "start": 847721211,
            "stop": 847721225
        },
        {
            "start": 847721226,
            "stop": 847721257
        },
        {
            "start": 847721258,
            "stop": 847721298
        },
        {
            "start": 847721300,
            "stop": 847721310
        },
        {
            "start": 847721311,
            "stop": 847721333
        },
        {
            "start": 847721336,
            "stop": 847721352
        },
        {
            "start": 847721353,
            "stop": 847721417
        },
        {
            "start": 847721418,
            "stop": 847721438
        },
        {
            "start": 847721439,
            "stop": 847721456
        }
    ]
}