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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=193",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=191",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 192,
    "results": [
        {
            "start": 837914612,
            "stop": 837914756
        },
        {
            "start": 837915452,
            "stop": 837918032
        },
        {
            "start": 837918045,
            "stop": 837918201
        },
        {
            "start": 837918205,
            "stop": 837918225
        },
        {
            "start": 837918229,
            "stop": 837918372
        },
        {
            "start": 837918376,
            "stop": 837918724
        },
        {
            "start": 837918728,
            "stop": 837924253
        },
        {
            "start": 837926180,
            "stop": 837959893
        },
        {
            "start": 837982321,
            "stop": 837986953
        },
        {
            "start": 837986959,
            "stop": 837986961
        },
        {
            "start": 837987056,
            "stop": 838041254
        },
        {
            "start": 838041388,
            "stop": 838041793
        },
        {
            "start": 838044147,
            "stop": 838051647
        },
        {
            "start": 838052307,
            "stop": 838054206
        },
        {
            "start": 838054875,
            "stop": 838062011
        },
        {
            "start": 838062281,
            "stop": 838064533
        },
        {
            "start": 838066158,
            "stop": 838071492
        },
        {
            "start": 838072441,
            "stop": 838075853
        },
        {
            "start": 838075971,
            "stop": 838078042
        },
        {
            "start": 838078248,
            "stop": 838078933
        }
    ]
}