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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=199",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 200,
    "results": [
        {
            "start": 850600373,
            "stop": 850601331
        },
        {
            "start": 850603395,
            "stop": 850604162
        },
        {
            "start": 850604209,
            "stop": 850610544
        },
        {
            "start": 850611271,
            "stop": 850632828
        },
        {
            "start": 850634140,
            "stop": 850648442
        },
        {
            "start": 850649501,
            "stop": 850657388
        },
        {
            "start": 850658543,
            "stop": 850660677
        },
        {
            "start": 850662019,
            "stop": 850669118
        },
        {
            "start": 850673646,
            "stop": 850689737
        },
        {
            "start": 850689910,
            "stop": 850720597
        },
        {
            "start": 850721537,
            "stop": 850740997
        },
        {
            "start": 850741998,
            "stop": 850743476
        },
        {
            "start": 850743742,
            "stop": 850749241
        },
        {
            "start": 850750180,
            "stop": 850760607
        },
        {
            "start": 850760763,
            "stop": 850760954
        },
        {
            "start": 850761491,
            "stop": 850762109
        },
        {
            "start": 850762253,
            "stop": 850762300
        },
        {
            "start": 850762351,
            "stop": 850762354
        },
        {
            "start": 850762860,
            "stop": 850773581
        },
        {
            "start": 850774195,
            "stop": 850775032
        }
    ]
}