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=2357
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=2358",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2356",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2357,
    "results": [
        {
            "start": 872204967,
            "stop": 872207153
        },
        {
            "start": 872207160,
            "stop": 872207472
        },
        {
            "start": 872207489,
            "stop": 872208866
        },
        {
            "start": 872208883,
            "stop": 872210255
        },
        {
            "start": 872210262,
            "stop": 872210280
        },
        {
            "start": 872210340,
            "stop": 872210420
        },
        {
            "start": 872210436,
            "stop": 872210520
        },
        {
            "start": 872210580,
            "stop": 872210628
        },
        {
            "start": 872210635,
            "stop": 872210699
        },
        {
            "start": 872210707,
            "stop": 872210752
        },
        {
            "start": 872210759,
            "stop": 872210820
        },
        {
            "start": 872211000,
            "stop": 872211095
        },
        {
            "start": 872211112,
            "stop": 872211180
        },
        {
            "start": 872211240,
            "stop": 872211360
        },
        {
            "start": 872211420,
            "stop": 872211480
        },
        {
            "start": 872211600,
            "stop": 872211722
        },
        {
            "start": 872211729,
            "stop": 872211840
        },
        {
            "start": 872211900,
            "stop": 872212277
        },
        {
            "start": 872212294,
            "stop": 872212560
        },
        {
            "start": 872212680,
            "stop": 872212767
        }
    ]
}