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=200
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=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=199",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 200,
    "results": [
        {
            "start": 818210195,
            "stop": 818210196
        },
        {
            "start": 818210200,
            "stop": 818210201
        },
        {
            "start": 818210204,
            "stop": 818210208
        },
        {
            "start": 818210226,
            "stop": 818210227
        },
        {
            "start": 818210231,
            "stop": 818210233
        },
        {
            "start": 818210238,
            "stop": 818210247
        },
        {
            "start": 818210259,
            "stop": 818210260
        },
        {
            "start": 818210266,
            "stop": 818210267
        },
        {
            "start": 818210270,
            "stop": 818210273
        },
        {
            "start": 818210284,
            "stop": 818210287
        },
        {
            "start": 818210296,
            "stop": 818210300
        },
        {
            "start": 818210306,
            "stop": 818210308
        },
        {
            "start": 818210316,
            "stop": 818210320
        },
        {
            "start": 818210323,
            "stop": 818210325
        },
        {
            "start": 818210340,
            "stop": 818210341
        },
        {
            "start": 818210364,
            "stop": 818210366
        },
        {
            "start": 818210371,
            "stop": 818210375
        },
        {
            "start": 818210388,
            "stop": 818210389
        },
        {
            "start": 818210392,
            "stop": 818210393
        },
        {
            "start": 818210404,
            "stop": 818210405
        }
    ]
}