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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=401",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=399",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 400,
    "results": [
        {
            "start": 867687728,
            "stop": 867689520
        },
        {
            "start": 867730518,
            "stop": 867734463
        },
        {
            "start": 867736010,
            "stop": 867736435
        },
        {
            "start": 867736591,
            "stop": 867736655
        },
        {
            "start": 867737734,
            "stop": 867762742
        },
        {
            "start": 867762763,
            "stop": 867766550
        },
        {
            "start": 867767751,
            "stop": 867771682
        },
        {
            "start": 867773079,
            "stop": 867773325
        },
        {
            "start": 867773625,
            "stop": 867774880
        },
        {
            "start": 867774990,
            "stop": 867775231
        },
        {
            "start": 867775356,
            "stop": 867776236
        },
        {
            "start": 867776741,
            "stop": 867777490
        },
        {
            "start": 867777600,
            "stop": 867777908
        },
        {
            "start": 867778208,
            "stop": 867779566
        },
        {
            "start": 867779866,
            "stop": 867780597
        },
        {
            "start": 867780618,
            "stop": 867782498
        },
        {
            "start": 867789370,
            "stop": 867789499
        },
        {
            "start": 867789832,
            "stop": 867791003
        },
        {
            "start": 867791113,
            "stop": 867791233
        },
        {
            "start": 867791533,
            "stop": 867795340
        }
    ]
}