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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=299",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 300,
    "results": [
        {
            "start": 818582964,
            "stop": 818583274
        },
        {
            "start": 818583294,
            "stop": 818583329
        },
        {
            "start": 818583349,
            "stop": 818583746
        },
        {
            "start": 818583765,
            "stop": 818583950
        },
        {
            "start": 818583980,
            "stop": 818584977
        },
        {
            "start": 818584997,
            "stop": 818586219
        },
        {
            "start": 818586351,
            "stop": 818586370
        },
        {
            "start": 818587770,
            "stop": 818588037
        },
        {
            "start": 818588057,
            "stop": 818588059
        },
        {
            "start": 818588078,
            "stop": 818589007
        },
        {
            "start": 818589024,
            "stop": 818590777
        },
        {
            "start": 818590799,
            "stop": 818591148
        },
        {
            "start": 818591169,
            "stop": 818591204
        },
        {
            "start": 818591269,
            "stop": 818591363
        },
        {
            "start": 818591383,
            "stop": 818591708
        },
        {
            "start": 818591732,
            "stop": 818594094
        },
        {
            "start": 818594113,
            "stop": 818594178
        },
        {
            "start": 818594219,
            "stop": 818595566
        },
        {
            "start": 818595592,
            "stop": 818596056
        },
        {
            "start": 818596076,
            "stop": 818596808
        }
    ]
}