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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=9",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=7",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 8,
    "results": [
        {
            "start": 1369317341,
            "stop": 1369317576
        },
        {
            "start": 1369317581,
            "stop": 1369322942
        },
        {
            "start": 1369322947,
            "stop": 1369326091
        },
        {
            "start": 1369326096,
            "stop": 1369326747
        },
        {
            "start": 1369326752,
            "stop": 1369329698
        },
        {
            "start": 1369329703,
            "stop": 1369330128
        },
        {
            "start": 1369330133,
            "stop": 1369330222
        },
        {
            "start": 1369330227,
            "stop": 1369330445
        },
        {
            "start": 1369330450,
            "stop": 1369331015
        },
        {
            "start": 1369331020,
            "stop": 1369331555
        },
        {
            "start": 1369331560,
            "stop": 1369332129
        },
        {
            "start": 1369332134,
            "stop": 1369332212
        },
        {
            "start": 1369332217,
            "stop": 1369332339
        },
        {
            "start": 1369332344,
            "stop": 1369332470
        },
        {
            "start": 1369332475,
            "stop": 1369332739
        },
        {
            "start": 1369332744,
            "stop": 1369332939
        },
        {
            "start": 1369332944,
            "stop": 1369333149
        },
        {
            "start": 1369333154,
            "stop": 1369333183
        },
        {
            "start": 1369333188,
            "stop": 1369333201
        },
        {
            "start": 1369333206,
            "stop": 1369333256
        }
    ]
}