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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=127",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 128,
    "results": [
        {
            "start": 833664519,
            "stop": 833664671
        },
        {
            "start": 833664971,
            "stop": 833667858
        },
        {
            "start": 833668044,
            "stop": 833673703
        },
        {
            "start": 833673965,
            "stop": 833681835
        },
        {
            "start": 833683178,
            "stop": 833706670
        },
        {
            "start": 833706671,
            "stop": 833728494
        },
        {
            "start": 833728794,
            "stop": 833731290
        },
        {
            "start": 833732695,
            "stop": 833742059
        },
        {
            "start": 833744663,
            "stop": 833748402
        },
        {
            "start": 833748404,
            "stop": 833749181
        },
        {
            "start": 833749291,
            "stop": 833749397
        },
        {
            "start": 833749697,
            "stop": 833749894
        },
        {
            "start": 833753658,
            "stop": 833753662
        },
        {
            "start": 833754829,
            "stop": 833756473
        },
        {
            "start": 833756773,
            "stop": 833771843
        },
        {
            "start": 833772852,
            "stop": 833794764
        },
        {
            "start": 833799644,
            "stop": 833807525
        },
        {
            "start": 833807527,
            "stop": 833811816
        },
        {
            "start": 833812870,
            "stop": 833827220
        },
        {
            "start": 833829294,
            "stop": 833829345
        }
    ]
}