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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=249",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 250,
    "results": [
        {
            "start": 861394259,
            "stop": 861394793
        },
        {
            "start": 861395797,
            "stop": 861397630
        },
        {
            "start": 861400818,
            "stop": 861416276
        },
        {
            "start": 861416367,
            "stop": 861430635
        },
        {
            "start": 861431814,
            "stop": 861446288
        },
        {
            "start": 861448032,
            "stop": 861452331
        },
        {
            "start": 861452740,
            "stop": 861452778
        },
        {
            "start": 861455097,
            "stop": 861458446
        },
        {
            "start": 861476823,
            "stop": 861477134
        },
        {
            "start": 861477988,
            "stop": 861478895
        },
        {
            "start": 861478984,
            "stop": 861479315
        },
        {
            "start": 861480123,
            "stop": 861483146
        },
        {
            "start": 861485075,
            "stop": 861487023
        },
        {
            "start": 861489324,
            "stop": 861490272
        },
        {
            "start": 861491942,
            "stop": 861496830
        },
        {
            "start": 861496929,
            "stop": 861496930
        },
        {
            "start": 861496938,
            "stop": 861498363
        },
        {
            "start": 861498410,
            "stop": 861514817
        },
        {
            "start": 861514903,
            "stop": 861521196
        },
        {
            "start": 861523156,
            "stop": 861538320
        }
    ]
}