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=12
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=13",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=11",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 12,
    "results": [
        {
            "start": 817051927,
            "stop": 817052219
        },
        {
            "start": 817052222,
            "stop": 817067155
        },
        {
            "start": 817067157,
            "stop": 817068234
        },
        {
            "start": 817071048,
            "stop": 817073859
        },
        {
            "start": 817073861,
            "stop": 817074578
        },
        {
            "start": 817074842,
            "stop": 817076147
        },
        {
            "start": 817076150,
            "stop": 817077421
        },
        {
            "start": 817077423,
            "stop": 817077832
        },
        {
            "start": 817080202,
            "stop": 817080471
        },
        {
            "start": 817080473,
            "stop": 817080501
        },
        {
            "start": 817081349,
            "stop": 817082127
        },
        {
            "start": 817085572,
            "stop": 817088061
        },
        {
            "start": 817088210,
            "stop": 817101397
        },
        {
            "start": 817101400,
            "stop": 817103818
        },
        {
            "start": 817104793,
            "stop": 817107053
        },
        {
            "start": 817108112,
            "stop": 817111760
        },
        {
            "start": 817111763,
            "stop": 817138138
        },
        {
            "start": 817138140,
            "stop": 817150577
        },
        {
            "start": 817150580,
            "stop": 817160023
        },
        {
            "start": 817160026,
            "stop": 817163369
        }
    ]
}