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_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/L1_CBCHIGH_CAT3/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=249",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 250,
    "results": [
        {
            "start": 817864814,
            "stop": 817864829
        },
        {
            "start": 817864833,
            "stop": 817864839
        },
        {
            "start": 817864843,
            "stop": 817864954
        },
        {
            "start": 817864958,
            "stop": 817865031
        },
        {
            "start": 817865048,
            "stop": 817865081
        },
        {
            "start": 817865084,
            "stop": 817865098
        },
        {
            "start": 817865101,
            "stop": 817865124
        },
        {
            "start": 817865127,
            "stop": 817865150
        },
        {
            "start": 817865167,
            "stop": 817865170
        },
        {
            "start": 817865201,
            "stop": 817865212
        },
        {
            "start": 817865245,
            "stop": 817865261
        },
        {
            "start": 817865264,
            "stop": 817865265
        },
        {
            "start": 817865286,
            "stop": 817865293
        },
        {
            "start": 817865296,
            "stop": 817865302
        },
        {
            "start": 817865305,
            "stop": 817865314
        },
        {
            "start": 817865350,
            "stop": 817865411
        },
        {
            "start": 817865433,
            "stop": 817865452
        },
        {
            "start": 817865486,
            "stop": 817865543
        },
        {
            "start": 817865548,
            "stop": 817865601
        },
        {
            "start": 817865618,
            "stop": 817865666
        }
    ]
}