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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=62",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_HW/segments?format=api&page=60",
    "results_count": 2118,
    "results_per_page": 20,
    "num_pages": 106,
    "page_number": 61,
    "results": [
        {
            "start": 854682669,
            "stop": 854682805
        },
        {
            "start": 854690348,
            "stop": 854690484
        },
        {
            "start": 854698997,
            "stop": 854699132
        },
        {
            "start": 854713205,
            "stop": 854713412
        },
        {
            "start": 854719292,
            "stop": 854719436
        },
        {
            "start": 854729189,
            "stop": 854729332
        },
        {
            "start": 854736477,
            "stop": 854736613
        },
        {
            "start": 854760901,
            "stop": 854761029
        },
        {
            "start": 854770861,
            "stop": 854770989
        },
        {
            "start": 854778645,
            "stop": 854778844
        },
        {
            "start": 854797317,
            "stop": 854797461
        },
        {
            "start": 854848536,
            "stop": 854848664
        },
        {
            "start": 854862144,
            "stop": 854862288
        },
        {
            "start": 854913328,
            "stop": 854913544
        },
        {
            "start": 854932864,
            "stop": 854932999
        },
        {
            "start": 854946793,
            "stop": 854946928
        },
        {
            "start": 854957753,
            "stop": 854957879
        },
        {
            "start": 854968553,
            "stop": 854968696
        },
        {
            "start": 854987513,
            "stop": 854987655
        },
        {
            "start": 855005104,
            "stop": 855005240
        }
    ]
}