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=6969
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=6970",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=6968",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 6969,
    "results": [
        {
            "start": 873803566,
            "stop": 873803606
        },
        {
            "start": 873803609,
            "stop": 873803613
        },
        {
            "start": 873803617,
            "stop": 873803675
        },
        {
            "start": 873803679,
            "stop": 873803682
        },
        {
            "start": 873803685,
            "stop": 873803724
        },
        {
            "start": 873803728,
            "stop": 873803859
        },
        {
            "start": 873803864,
            "stop": 873803896
        },
        {
            "start": 873803900,
            "stop": 873803950
        },
        {
            "start": 873803954,
            "stop": 873803957
        },
        {
            "start": 873803961,
            "stop": 873804177
        },
        {
            "start": 873804180,
            "stop": 873804184
        },
        {
            "start": 873804189,
            "stop": 873804283
        },
        {
            "start": 873804287,
            "stop": 873804563
        },
        {
            "start": 873804578,
            "stop": 873804745
        },
        {
            "start": 873804753,
            "stop": 873804854
        },
        {
            "start": 873804858,
            "stop": 873804901
        },
        {
            "start": 873804905,
            "stop": 873804916
        },
        {
            "start": 873804920,
            "stop": 873805013
        },
        {
            "start": 873805017,
            "stop": 873805032
        },
        {
            "start": 873805038,
            "stop": 873805180
        }
    ]
}