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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=128",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=126",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 127,
    "results": [
        {
            "start": 837788251,
            "stop": 837793853
        },
        {
            "start": 837794043,
            "stop": 837794174
        },
        {
            "start": 837794404,
            "stop": 837798839
        },
        {
            "start": 837798998,
            "stop": 837808850
        },
        {
            "start": 837809240,
            "stop": 837815646
        },
        {
            "start": 837816170,
            "stop": 837827267
        },
        {
            "start": 837828272,
            "stop": 837838146
        },
        {
            "start": 837838889,
            "stop": 837844283
        },
        {
            "start": 837845370,
            "stop": 837869160
        },
        {
            "start": 837869224,
            "stop": 837870319
        },
        {
            "start": 837870365,
            "stop": 837871531
        },
        {
            "start": 837910416,
            "stop": 837911917
        },
        {
            "start": 837911973,
            "stop": 837912917
        },
        {
            "start": 837913093,
            "stop": 837914327
        },
        {
            "start": 837914476,
            "stop": 837921458
        },
        {
            "start": 837921582,
            "stop": 837921766
        },
        {
            "start": 837923273,
            "stop": 837923414
        },
        {
            "start": 837923978,
            "stop": 837927378
        },
        {
            "start": 837927417,
            "stop": 837927633
        },
        {
            "start": 837927889,
            "stop": 837935728
        }
    ]
}