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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=100",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 101,
    "results": [
        {
            "start": 932382320,
            "stop": 932382372
        },
        {
            "start": 932399428,
            "stop": 932400899
        },
        {
            "start": 932400927,
            "stop": 932402398
        },
        {
            "start": 932402416,
            "stop": 932402418
        },
        {
            "start": 932402463,
            "stop": 932403080
        },
        {
            "start": 932403085,
            "stop": 932403971
        },
        {
            "start": 932405518,
            "stop": 932405664
        },
        {
            "start": 932405669,
            "stop": 932408956
        },
        {
            "start": 932408975,
            "stop": 932411080
        },
        {
            "start": 932411233,
            "stop": 932414172
        },
        {
            "start": 932414191,
            "stop": 932414358
        },
        {
            "start": 932414377,
            "stop": 932414408
        },
        {
            "start": 932414427,
            "stop": 932415813
        },
        {
            "start": 932415836,
            "stop": 932415929
        },
        {
            "start": 932415957,
            "stop": 932415996
        },
        {
            "start": 932416015,
            "stop": 932424062
        },
        {
            "start": 932424694,
            "stop": 932424871
        },
        {
            "start": 932426536,
            "stop": 932426702
        },
        {
            "start": 932426707,
            "stop": 932426760
        },
        {
            "start": 932426820,
            "stop": 932427755
        }
    ]
}