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=98
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=99",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=97",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 98,
    "results": [
        {
            "start": 817810030,
            "stop": 817810113
        },
        {
            "start": 817810116,
            "stop": 817810462
        },
        {
            "start": 817810466,
            "stop": 817810602
        },
        {
            "start": 817810607,
            "stop": 817811261
        },
        {
            "start": 817811264,
            "stop": 817811280
        },
        {
            "start": 817811340,
            "stop": 817811430
        },
        {
            "start": 817811433,
            "stop": 817811492
        },
        {
            "start": 817811496,
            "stop": 817811520
        },
        {
            "start": 817811580,
            "stop": 817811636
        },
        {
            "start": 817811642,
            "stop": 817811644
        },
        {
            "start": 817811648,
            "stop": 817811683
        },
        {
            "start": 817811690,
            "stop": 817811734
        },
        {
            "start": 817811740,
            "stop": 817811742
        },
        {
            "start": 817811749,
            "stop": 817811895
        },
        {
            "start": 817811899,
            "stop": 817812058
        },
        {
            "start": 817812061,
            "stop": 817812146
        },
        {
            "start": 817812149,
            "stop": 817812208
        },
        {
            "start": 817812211,
            "stop": 817812246
        },
        {
            "start": 817812250,
            "stop": 817812293
        },
        {
            "start": 817812297,
            "stop": 817812323
        }
    ]
}