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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9989",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9987",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 9988,
    "results": [
        {
            "start": 872139230,
            "stop": 872139335
        },
        {
            "start": 872139474,
            "stop": 872139476
        },
        {
            "start": 872139537,
            "stop": 872139614
        },
        {
            "start": 872139631,
            "stop": 872139648
        },
        {
            "start": 872139763,
            "stop": 872139773
        },
        {
            "start": 872139815,
            "stop": 872139925
        },
        {
            "start": 872139961,
            "stop": 872140010
        },
        {
            "start": 872140046,
            "stop": 872140076
        },
        {
            "start": 872140121,
            "stop": 872140125
        },
        {
            "start": 872140161,
            "stop": 872140181
        },
        {
            "start": 872140258,
            "stop": 872140460
        },
        {
            "start": 872140535,
            "stop": 872140567
        },
        {
            "start": 872140645,
            "stop": 872140657
        },
        {
            "start": 872140696,
            "stop": 872140741
        },
        {
            "start": 872140797,
            "stop": 872140861
        },
        {
            "start": 872140901,
            "stop": 872140978
        },
        {
            "start": 872141049,
            "stop": 872141149
        },
        {
            "start": 872141185,
            "stop": 872141231
        },
        {
            "start": 872141268,
            "stop": 872141287
        },
        {
            "start": 872141323,
            "stop": 872141348
        }
    ]
}