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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=122",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 123,
    "results": [
        {
            "start": 821498510,
            "stop": 821498512
        },
        {
            "start": 821498515,
            "stop": 821498517
        },
        {
            "start": 821498520,
            "stop": 821498530
        },
        {
            "start": 821498533,
            "stop": 821498538
        },
        {
            "start": 821498541,
            "stop": 821498559
        },
        {
            "start": 821498562,
            "stop": 821498575
        },
        {
            "start": 821498582,
            "stop": 821498611
        },
        {
            "start": 821498619,
            "stop": 821498642
        },
        {
            "start": 821498645,
            "stop": 821498655
        },
        {
            "start": 821498658,
            "stop": 821498715
        },
        {
            "start": 821498718,
            "stop": 821498766
        },
        {
            "start": 821498769,
            "stop": 821498770
        },
        {
            "start": 821498773,
            "stop": 821498789
        },
        {
            "start": 821498792,
            "stop": 821498800
        },
        {
            "start": 821498803,
            "stop": 821498809
        },
        {
            "start": 821498812,
            "stop": 821498818
        },
        {
            "start": 821498821,
            "stop": 821498847
        },
        {
            "start": 821498850,
            "stop": 821498875
        },
        {
            "start": 821498881,
            "stop": 821498927
        },
        {
            "start": 821498930,
            "stop": 821498942
        }
    ]
}