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=9000
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=9001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=8999",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 9000,
    "results": [
        {
            "start": 873944900,
            "stop": 873945158
        },
        {
            "start": 873945177,
            "stop": 873945312
        },
        {
            "start": 873945348,
            "stop": 873945733
        },
        {
            "start": 873945750,
            "stop": 873946148
        },
        {
            "start": 873946165,
            "stop": 873946297
        },
        {
            "start": 873946314,
            "stop": 873946385
        },
        {
            "start": 873946404,
            "stop": 873946673
        },
        {
            "start": 873946694,
            "stop": 873946916
        },
        {
            "start": 873946954,
            "stop": 873946960
        },
        {
            "start": 873946979,
            "stop": 873946981
        },
        {
            "start": 873947039,
            "stop": 873947092
        },
        {
            "start": 873947111,
            "stop": 873947472
        },
        {
            "start": 873947491,
            "stop": 873947497
        },
        {
            "start": 873947516,
            "stop": 873948355
        },
        {
            "start": 873948374,
            "stop": 873948925
        },
        {
            "start": 873948942,
            "stop": 873949235
        },
        {
            "start": 873949255,
            "stop": 873949607
        },
        {
            "start": 873949645,
            "stop": 873949649
        },
        {
            "start": 873949682,
            "stop": 873949867
        },
        {
            "start": 873949886,
            "stop": 873950270
        }
    ]
}