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/H1_BURST_CAT3/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/H1_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=122",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 123,
    "results": [
        {
            "start": 820177390,
            "stop": 820177392
        },
        {
            "start": 820177398,
            "stop": 820177412
        },
        {
            "start": 820177418,
            "stop": 820177653
        },
        {
            "start": 820177657,
            "stop": 820177659
        },
        {
            "start": 820177662,
            "stop": 820177664
        },
        {
            "start": 820177668,
            "stop": 820177913
        },
        {
            "start": 820177916,
            "stop": 820178010
        },
        {
            "start": 820178013,
            "stop": 820178177
        },
        {
            "start": 820178180,
            "stop": 820178183
        },
        {
            "start": 820178186,
            "stop": 820178318
        },
        {
            "start": 820178323,
            "stop": 820178325
        },
        {
            "start": 820178328,
            "stop": 820178545
        },
        {
            "start": 820178548,
            "stop": 820178573
        },
        {
            "start": 820178576,
            "stop": 820178748
        },
        {
            "start": 820178751,
            "stop": 820178832
        },
        {
            "start": 820178835,
            "stop": 820178894
        },
        {
            "start": 820178897,
            "stop": 820178965
        },
        {
            "start": 820178968,
            "stop": 820179038
        },
        {
            "start": 820179041,
            "stop": 820179197
        },
        {
            "start": 820179201,
            "stop": 820179290
        }
    ]
}