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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=4000",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3998",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 3999,
    "results": [
        {
            "start": 874761219,
            "stop": 874761275
        },
        {
            "start": 874761276,
            "stop": 874761420
        },
        {
            "start": 874761421,
            "stop": 874761430
        },
        {
            "start": 874761431,
            "stop": 874761449
        },
        {
            "start": 874761450,
            "stop": 874761454
        },
        {
            "start": 874761455,
            "stop": 874761529
        },
        {
            "start": 874761530,
            "stop": 874761571
        },
        {
            "start": 874761572,
            "stop": 874761580
        },
        {
            "start": 874761581,
            "stop": 874761595
        },
        {
            "start": 874761596,
            "stop": 874761664
        },
        {
            "start": 874761665,
            "stop": 874761711
        },
        {
            "start": 874761712,
            "stop": 874761739
        },
        {
            "start": 874761741,
            "stop": 874761744
        },
        {
            "start": 874761745,
            "stop": 874761751
        },
        {
            "start": 874761753,
            "stop": 874761767
        },
        {
            "start": 874761768,
            "stop": 874761789
        },
        {
            "start": 874761793,
            "stop": 874761801
        },
        {
            "start": 874761802,
            "stop": 874761828
        },
        {
            "start": 874761829,
            "stop": 874761833
        },
        {
            "start": 874761834,
            "stop": 874761850
        }
    ]
}