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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=300",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 301,
    "results": [
        {
            "start": 858465293,
            "stop": 858486942
        },
        {
            "start": 858487850,
            "stop": 858498283
        },
        {
            "start": 858499334,
            "stop": 858499411
        },
        {
            "start": 858499747,
            "stop": 858506537
        },
        {
            "start": 858506783,
            "stop": 858514674
        },
        {
            "start": 858514872,
            "stop": 858518743
        },
        {
            "start": 858519945,
            "stop": 858525668
        },
        {
            "start": 858527589,
            "stop": 858543489
        },
        {
            "start": 858545038,
            "stop": 858555513
        },
        {
            "start": 858557064,
            "stop": 858558728
        },
        {
            "start": 858559997,
            "stop": 858584193
        },
        {
            "start": 858586663,
            "stop": 858607106
        },
        {
            "start": 858608121,
            "stop": 858609069
        },
        {
            "start": 858610943,
            "stop": 858611584
        },
        {
            "start": 858615361,
            "stop": 858615732
        },
        {
            "start": 858615812,
            "stop": 858629567
        },
        {
            "start": 858631018,
            "stop": 858632204
        },
        {
            "start": 858633200,
            "stop": 858636341
        },
        {
            "start": 858654700,
            "stop": 858657935
        },
        {
            "start": 858658797,
            "stop": 858669236
        }
    ]
}