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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=17",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=15",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 16,
    "results": [
        {
            "start": 817443515,
            "stop": 817447648
        },
        {
            "start": 817447758,
            "stop": 817447970
        },
        {
            "start": 817448270,
            "stop": 817449567
        },
        {
            "start": 817449677,
            "stop": 817450205
        },
        {
            "start": 817450467,
            "stop": 817453793
        },
        {
            "start": 817454851,
            "stop": 817454852
        },
        {
            "start": 817454855,
            "stop": 817459255
        },
        {
            "start": 817459821,
            "stop": 817482539
        },
        {
            "start": 817484113,
            "stop": 817485257
        },
        {
            "start": 817493409,
            "stop": 817494022
        },
        {
            "start": 817494024,
            "stop": 817494089
        },
        {
            "start": 817494136,
            "stop": 817496137
        },
        {
            "start": 817497517,
            "stop": 817502041
        },
        {
            "start": 817502095,
            "stop": 817503211
        },
        {
            "start": 817506984,
            "stop": 817508356
        },
        {
            "start": 817509064,
            "stop": 817510250
        },
        {
            "start": 817511218,
            "stop": 817519645
        },
        {
            "start": 817519754,
            "stop": 817549458
        },
        {
            "start": 817551093,
            "stop": 817551344
        },
        {
            "start": 817551346,
            "stop": 817551365
        }
    ]
}