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/H2_CBCLOW_CAT3/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/H2_CBCLOW_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT3/segments?format=api&page=249",
    "results_count": 105470,
    "results_per_page": 20,
    "num_pages": 5274,
    "page_number": 250,
    "results": [
        {
            "start": 820926887,
            "stop": 820926943
        },
        {
            "start": 820926950,
            "stop": 820926995
        },
        {
            "start": 820927003,
            "stop": 820927198
        },
        {
            "start": 820927205,
            "stop": 820927342
        },
        {
            "start": 820927350,
            "stop": 820927535
        },
        {
            "start": 820927543,
            "stop": 820927598
        },
        {
            "start": 820927605,
            "stop": 820927618
        },
        {
            "start": 820927625,
            "stop": 820927795
        },
        {
            "start": 820927802,
            "stop": 820927824
        },
        {
            "start": 820927832,
            "stop": 820927850
        },
        {
            "start": 820927857,
            "stop": 820928038
        },
        {
            "start": 820928045,
            "stop": 820928279
        },
        {
            "start": 820928286,
            "stop": 820928442
        },
        {
            "start": 820928449,
            "stop": 820928530
        },
        {
            "start": 820928538,
            "stop": 820928826
        },
        {
            "start": 820928834,
            "stop": 820929024
        },
        {
            "start": 820929031,
            "stop": 820929128
        },
        {
            "start": 820929135,
            "stop": 820929170
        },
        {
            "start": 820929177,
            "stop": 820929224
        },
        {
            "start": 820929237,
            "stop": 820929307
        }
    ]
}