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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=249",
    "results_count": 164472,
    "results_per_page": 20,
    "num_pages": 8224,
    "page_number": 250,
    "results": [
        {
            "start": 934238909,
            "stop": 934239029
        },
        {
            "start": 934239209,
            "stop": 934239389
        },
        {
            "start": 934239449,
            "stop": 934239615
        },
        {
            "start": 934239855,
            "stop": 934239869
        },
        {
            "start": 934239929,
            "stop": 934239989
        },
        {
            "start": 934240049,
            "stop": 934240229
        },
        {
            "start": 934240289,
            "stop": 934240349
        },
        {
            "start": 934240409,
            "stop": 934240709
        },
        {
            "start": 934240889,
            "stop": 934241009
        },
        {
            "start": 934241129,
            "stop": 934241132
        },
        {
            "start": 934241134,
            "stop": 934241187
        },
        {
            "start": 934241309,
            "stop": 934241429
        },
        {
            "start": 934241489,
            "stop": 934241909
        },
        {
            "start": 934241969,
            "stop": 934242029
        },
        {
            "start": 934242149,
            "stop": 934242389
        },
        {
            "start": 934242449,
            "stop": 934242509
        },
        {
            "start": 934242569,
            "stop": 934242689
        },
        {
            "start": 934242869,
            "stop": 934242929
        },
        {
            "start": 934243049,
            "stop": 934243109
        },
        {
            "start": 934243469,
            "stop": 934243529
        }
    ]
}