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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=98",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 99,
    "results": [
        {
            "start": 819724415,
            "stop": 819725228
        },
        {
            "start": 819725235,
            "stop": 819725286
        },
        {
            "start": 819725293,
            "stop": 819725710
        },
        {
            "start": 819725717,
            "stop": 819725800
        },
        {
            "start": 819725807,
            "stop": 819725831
        },
        {
            "start": 819726138,
            "stop": 819726436
        },
        {
            "start": 819726443,
            "stop": 819726883
        },
        {
            "start": 819726890,
            "stop": 819727243
        },
        {
            "start": 819727250,
            "stop": 819727322
        },
        {
            "start": 819727329,
            "stop": 819727424
        },
        {
            "start": 819727431,
            "stop": 819727512
        },
        {
            "start": 819727519,
            "stop": 819727738
        },
        {
            "start": 819727752,
            "stop": 819727765
        },
        {
            "start": 819727773,
            "stop": 819727873
        },
        {
            "start": 819727880,
            "stop": 819728119
        },
        {
            "start": 819728130,
            "stop": 819728190
        },
        {
            "start": 819728197,
            "stop": 819728372
        },
        {
            "start": 819728379,
            "stop": 819728418
        },
        {
            "start": 819728425,
            "stop": 819728517
        },
        {
            "start": 819728525,
            "stop": 819728612
        }
    ]
}