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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT2/segments?format=api&page=3",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT2/segments?format=api",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 2,
    "results": [
        {
            "start": 1368458504,
            "stop": 1368460501
        },
        {
            "start": 1368547400,
            "stop": 1368547783
        },
        {
            "start": 1368547942,
            "stop": 1368551774
        },
        {
            "start": 1368551779,
            "stop": 1368552711
        },
        {
            "start": 1368979913,
            "stop": 1368980661
        },
        {
            "start": 1368980666,
            "stop": 1368981318
        },
        {
            "start": 1368981323,
            "stop": 1368982904
        },
        {
            "start": 1368982909,
            "stop": 1368982996
        },
        {
            "start": 1368983001,
            "stop": 1368984439
        },
        {
            "start": 1368984443,
            "stop": 1368984495
        },
        {
            "start": 1368984500,
            "stop": 1368984694
        },
        {
            "start": 1368984699,
            "stop": 1368987100
        },
        {
            "start": 1368987105,
            "stop": 1368987582
        },
        {
            "start": 1368987587,
            "stop": 1368987913
        },
        {
            "start": 1368987918,
            "stop": 1368988080
        },
        {
            "start": 1368988084,
            "stop": 1368988167
        },
        {
            "start": 1368988172,
            "stop": 1368988192
        },
        {
            "start": 1368988197,
            "stop": 1368988212
        },
        {
            "start": 1368988217,
            "stop": 1368992167
        },
        {
            "start": 1368992172,
            "stop": 1368992197
        }
    ]
}