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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2/segments?format=api&page=501",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2/segments?format=api&page=499",
    "results_count": 16323,
    "results_per_page": 20,
    "num_pages": 817,
    "page_number": 500,
    "results": [
        {
            "start": 823352962,
            "stop": 823355072
        },
        {
            "start": 823355074,
            "stop": 823355462
        },
        {
            "start": 823358293,
            "stop": 823358835
        },
        {
            "start": 823358838,
            "stop": 823358839
        },
        {
            "start": 823358842,
            "stop": 823361295
        },
        {
            "start": 823410853,
            "stop": 823423453
        },
        {
            "start": 823424713,
            "stop": 823451053
        },
        {
            "start": 823451058,
            "stop": 823451061
        },
        {
            "start": 823517413,
            "stop": 823526616
        },
        {
            "start": 823526619,
            "stop": 823526621
        },
        {
            "start": 823526627,
            "stop": 823531513
        },
        {
            "start": 823531518,
            "stop": 823531521
        },
        {
            "start": 823601173,
            "stop": 823614801
        },
        {
            "start": 823616953,
            "stop": 823617733
        },
        {
            "start": 823617777,
            "stop": 823617779
        },
        {
            "start": 823699993,
            "stop": 823701877
        },
        {
            "start": 823701881,
            "stop": 823701966
        },
        {
            "start": 823701969,
            "stop": 823702040
        },
        {
            "start": 823702043,
            "stop": 823702141
        },
        {
            "start": 823702144,
            "stop": 823702313
        }
    ]
}