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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=98",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 99,
    "results": [
        {
            "start": 816923007,
            "stop": 816923033
        },
        {
            "start": 816923055,
            "stop": 816923096
        },
        {
            "start": 816923131,
            "stop": 816923286
        },
        {
            "start": 816923306,
            "stop": 816923365
        },
        {
            "start": 816923387,
            "stop": 816923398
        },
        {
            "start": 816923439,
            "stop": 816923456
        },
        {
            "start": 816923460,
            "stop": 816923476
        },
        {
            "start": 816923508,
            "stop": 816923665
        },
        {
            "start": 816923686,
            "stop": 816923715
        },
        {
            "start": 816923735,
            "stop": 816923884
        },
        {
            "start": 816923915,
            "stop": 816923934
        },
        {
            "start": 816923971,
            "stop": 816923988
        },
        {
            "start": 816924032,
            "stop": 816924042
        },
        {
            "start": 816924070,
            "stop": 816924071
        },
        {
            "start": 816924180,
            "stop": 816924216
        },
        {
            "start": 816924235,
            "stop": 816924250
        },
        {
            "start": 816924270,
            "stop": 816924293
        },
        {
            "start": 816924436,
            "stop": 816924479
        },
        {
            "start": 816924514,
            "stop": 816924516
        },
        {
            "start": 816924541,
            "stop": 816924667
        }
    ]
}