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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10005",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10003",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10004,
    "results": [
        {
            "start": 872236069,
            "stop": 872236101
        },
        {
            "start": 872236191,
            "stop": 872236290
        },
        {
            "start": 872237250,
            "stop": 872237268
        },
        {
            "start": 872237312,
            "stop": 872237320
        },
        {
            "start": 872237430,
            "stop": 872237439
        },
        {
            "start": 872237523,
            "stop": 872237612
        },
        {
            "start": 872237648,
            "stop": 872238531
        },
        {
            "start": 872238548,
            "stop": 872238586
        },
        {
            "start": 872238622,
            "stop": 872239439
        },
        {
            "start": 872239519,
            "stop": 872240608
        },
        {
            "start": 872240644,
            "stop": 872240743
        },
        {
            "start": 872240760,
            "stop": 872241971
        },
        {
            "start": 872242007,
            "stop": 872242018
        },
        {
            "start": 872242065,
            "stop": 872242885
        },
        {
            "start": 872242902,
            "stop": 872243149
        },
        {
            "start": 872243185,
            "stop": 872243369
        },
        {
            "start": 872243386,
            "stop": 872243946
        },
        {
            "start": 872243982,
            "stop": 872244098
        },
        {
            "start": 872244134,
            "stop": 872244324
        },
        {
            "start": 872244360,
            "stop": 872244428
        }
    ]
}