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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=4999",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5000,
    "results": [
        {
            "start": 872236024,
            "stop": 872236033
        },
        {
            "start": 872236069,
            "stop": 872236101
        },
        {
            "start": 872236191,
            "stop": 872236406
        },
        {
            "start": 872236457,
            "stop": 872236590
        },
        {
            "start": 872237236,
            "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
        }
    ]
}