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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=344",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 345,
    "results": [
        {
            "start": 818815937,
            "stop": 818815994
        },
        {
            "start": 818816075,
            "stop": 818816103
        },
        {
            "start": 818816122,
            "stop": 818816131
        },
        {
            "start": 818816209,
            "stop": 818816266
        },
        {
            "start": 818816340,
            "stop": 818816342
        },
        {
            "start": 818816363,
            "stop": 818816449
        },
        {
            "start": 818816469,
            "stop": 818816480
        },
        {
            "start": 818816501,
            "stop": 818816547
        },
        {
            "start": 818816587,
            "stop": 818816647
        },
        {
            "start": 818816746,
            "stop": 818816801
        },
        {
            "start": 818816877,
            "stop": 818816898
        },
        {
            "start": 818817015,
            "stop": 818817039
        },
        {
            "start": 818817088,
            "stop": 818817089
        },
        {
            "start": 818817145,
            "stop": 818817147
        },
        {
            "start": 818817214,
            "stop": 818817223
        },
        {
            "start": 818817227,
            "stop": 818817252
        },
        {
            "start": 818817275,
            "stop": 818817305
        },
        {
            "start": 818817334,
            "stop": 818817419
        },
        {
            "start": 818817438,
            "stop": 818817470
        },
        {
            "start": 818817494,
            "stop": 818817498
        }
    ]
}