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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=223",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=221",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 222,
    "results": [
        {
            "start": 855835832,
            "stop": 855852128
        },
        {
            "start": 855854447,
            "stop": 855863530
        },
        {
            "start": 855863728,
            "stop": 855866797
        },
        {
            "start": 855867298,
            "stop": 855871101
        },
        {
            "start": 855873634,
            "stop": 855875706
        },
        {
            "start": 855876416,
            "stop": 855878178
        },
        {
            "start": 855881069,
            "stop": 855881758
        },
        {
            "start": 855881822,
            "stop": 855903232
        },
        {
            "start": 855904412,
            "stop": 855905793
        },
        {
            "start": 855905877,
            "stop": 855909307
        },
        {
            "start": 855909379,
            "stop": 855919469
        },
        {
            "start": 855920330,
            "stop": 855929819
        },
        {
            "start": 855931880,
            "stop": 855932606
        },
        {
            "start": 855932768,
            "stop": 855933834
        },
        {
            "start": 855934029,
            "stop": 855934313
        },
        {
            "start": 855935726,
            "stop": 855935754
        },
        {
            "start": 855935873,
            "stop": 855940838
        },
        {
            "start": 855941424,
            "stop": 855956158
        },
        {
            "start": 855956204,
            "stop": 855961124
        },
        {
            "start": 855962786,
            "stop": 855972972
        }
    ]
}