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=31
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=32",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=30",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 31,
    "results": [
        {
            "start": 816673354,
            "stop": 816673376
        },
        {
            "start": 816673384,
            "stop": 816673400
        },
        {
            "start": 816673403,
            "stop": 816673414
        },
        {
            "start": 816673418,
            "stop": 816673591
        },
        {
            "start": 816673594,
            "stop": 816673769
        },
        {
            "start": 816673772,
            "stop": 816673848
        },
        {
            "start": 816673852,
            "stop": 816673861
        },
        {
            "start": 816673864,
            "stop": 816673866
        },
        {
            "start": 816673871,
            "stop": 816674065
        },
        {
            "start": 816674068,
            "stop": 816674103
        },
        {
            "start": 816674106,
            "stop": 816674255
        },
        {
            "start": 816674258,
            "stop": 816674418
        },
        {
            "start": 816674423,
            "stop": 816674745
        },
        {
            "start": 816674749,
            "stop": 816674791
        },
        {
            "start": 816674795,
            "stop": 816675028
        },
        {
            "start": 816675031,
            "stop": 816675163
        },
        {
            "start": 816675166,
            "stop": 816675223
        },
        {
            "start": 816675226,
            "stop": 816675306
        },
        {
            "start": 816675313,
            "stop": 816675437
        },
        {
            "start": 816675440,
            "stop": 816675476
        }
    ]
}