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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=233",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 234,
    "results": [
        {
            "start": 818214223,
            "stop": 818214225
        },
        {
            "start": 818214232,
            "stop": 818214233
        },
        {
            "start": 818214242,
            "stop": 818214248
        },
        {
            "start": 818214260,
            "stop": 818214261
        },
        {
            "start": 818214264,
            "stop": 818214266
        },
        {
            "start": 818214269,
            "stop": 818214272
        },
        {
            "start": 818214286,
            "stop": 818214288
        },
        {
            "start": 818214298,
            "stop": 818214300
        },
        {
            "start": 818214304,
            "stop": 818214308
        },
        {
            "start": 818214328,
            "stop": 818214329
        },
        {
            "start": 818214343,
            "stop": 818214344
        },
        {
            "start": 818214364,
            "stop": 818214365
        },
        {
            "start": 818214368,
            "stop": 818214373
        },
        {
            "start": 818214387,
            "stop": 818214389
        },
        {
            "start": 818214397,
            "stop": 818214406
        },
        {
            "start": 818214421,
            "stop": 818214422
        },
        {
            "start": 818214435,
            "stop": 818214440
        },
        {
            "start": 818214446,
            "stop": 818214447
        },
        {
            "start": 818214457,
            "stop": 818214463
        },
        {
            "start": 818214469,
            "stop": 818214470
        }
    ]
}