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=234
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=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=233",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 234,
    "results": [
        {
            "start": 851764570,
            "stop": 851764650
        },
        {
            "start": 851764706,
            "stop": 851764762
        },
        {
            "start": 851764842,
            "stop": 851764890
        },
        {
            "start": 851764898,
            "stop": 851778335
        },
        {
            "start": 851778445,
            "stop": 851778675
        },
        {
            "start": 851780244,
            "stop": 851780791
        },
        {
            "start": 851782098,
            "stop": 851782397
        },
        {
            "start": 851782402,
            "stop": 851784430
        },
        {
            "start": 851784747,
            "stop": 851785188
        },
        {
            "start": 851786839,
            "stop": 851787680
        },
        {
            "start": 851805974,
            "stop": 851810529
        },
        {
            "start": 851810563,
            "stop": 851818274
        },
        {
            "start": 851818298,
            "stop": 851864214
        },
        {
            "start": 851867117,
            "stop": 851867183
        },
        {
            "start": 851867191,
            "stop": 851869853
        },
        {
            "start": 851869860,
            "stop": 851872173
        },
        {
            "start": 851872196,
            "stop": 851872197
        },
        {
            "start": 851872286,
            "stop": 851878772
        },
        {
            "start": 851878791,
            "stop": 851885427
        },
        {
            "start": 851885501,
            "stop": 851892690
        }
    ]
}