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/S6/timelines/L1_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/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=249",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 250,
    "results": [
        {
            "start": 933293753,
            "stop": 933293760
        },
        {
            "start": 933293887,
            "stop": 933293892
        },
        {
            "start": 933293940,
            "stop": 933293945
        },
        {
            "start": 933294087,
            "stop": 933294128
        },
        {
            "start": 933294157,
            "stop": 933294182
        },
        {
            "start": 933294202,
            "stop": 933294274
        },
        {
            "start": 933294435,
            "stop": 933294696
        },
        {
            "start": 933294715,
            "stop": 933295251
        },
        {
            "start": 933295272,
            "stop": 933295373
        },
        {
            "start": 933295395,
            "stop": 933295405
        },
        {
            "start": 933295545,
            "stop": 933295573
        },
        {
            "start": 933295599,
            "stop": 933295615
        },
        {
            "start": 933295669,
            "stop": 933295670
        },
        {
            "start": 933295754,
            "stop": 933295803
        },
        {
            "start": 933295834,
            "stop": 933295836
        },
        {
            "start": 933295954,
            "stop": 933295965
        },
        {
            "start": 933295984,
            "stop": 933295989
        },
        {
            "start": 933296007,
            "stop": 933296264
        },
        {
            "start": 933296284,
            "stop": 933296363
        },
        {
            "start": 933296382,
            "stop": 933296572
        }
    ]
}