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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10043",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10041",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10042,
    "results": [
        {
            "start": 872645253,
            "stop": 872645520
        },
        {
            "start": 872645700,
            "stop": 872646600
        },
        {
            "start": 872647140,
            "stop": 872647920
        },
        {
            "start": 872647980,
            "stop": 872648054
        },
        {
            "start": 872649660,
            "stop": 872650200
        },
        {
            "start": 872650260,
            "stop": 872651826
        },
        {
            "start": 872651843,
            "stop": 872652427
        },
        {
            "start": 872652444,
            "stop": 872654068
        },
        {
            "start": 872654085,
            "stop": 872656178
        },
        {
            "start": 872656196,
            "stop": 872656244
        },
        {
            "start": 872656262,
            "stop": 872656375
        },
        {
            "start": 872656392,
            "stop": 872656473
        },
        {
            "start": 872656491,
            "stop": 872656568
        },
        {
            "start": 872656584,
            "stop": 872656605
        },
        {
            "start": 872656622,
            "stop": 872656805
        },
        {
            "start": 872656823,
            "stop": 872656861
        },
        {
            "start": 872656879,
            "stop": 872657001
        },
        {
            "start": 872657019,
            "stop": 872657191
        },
        {
            "start": 872657209,
            "stop": 872657301
        },
        {
            "start": 872657318,
            "stop": 872657493
        }
    ]
}