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=123
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=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=122",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 123,
    "results": [
        {
            "start": 827236468,
            "stop": 827236484
        },
        {
            "start": 827236487,
            "stop": 827236493
        },
        {
            "start": 827236511,
            "stop": 827236522
        },
        {
            "start": 827236530,
            "stop": 827236545
        },
        {
            "start": 827236554,
            "stop": 827236584
        },
        {
            "start": 827236593,
            "stop": 827236599
        },
        {
            "start": 827236603,
            "stop": 827236618
        },
        {
            "start": 827236621,
            "stop": 827236627
        },
        {
            "start": 827236650,
            "stop": 827236661
        },
        {
            "start": 827236665,
            "stop": 827236670
        },
        {
            "start": 827236684,
            "stop": 827236705
        },
        {
            "start": 827236708,
            "stop": 827236743
        },
        {
            "start": 827236756,
            "stop": 827236762
        },
        {
            "start": 827236813,
            "stop": 827236824
        },
        {
            "start": 827236833,
            "stop": 827236843
        },
        {
            "start": 827236851,
            "stop": 827236857
        },
        {
            "start": 827236870,
            "stop": 827236876
        },
        {
            "start": 827236879,
            "stop": 827236895
        },
        {
            "start": 827236942,
            "stop": 827236952
        },
        {
            "start": 827236956,
            "stop": 827236975
        }
    ]
}