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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=255",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 256,
    "results": [
        {
            "start": 817890410,
            "stop": 817890419
        },
        {
            "start": 817890436,
            "stop": 817890446
        },
        {
            "start": 817890450,
            "stop": 817890517
        },
        {
            "start": 817890551,
            "stop": 817890570
        },
        {
            "start": 817892173,
            "stop": 817892219
        },
        {
            "start": 817892239,
            "stop": 817892698
        },
        {
            "start": 817892718,
            "stop": 817893077
        },
        {
            "start": 817893113,
            "stop": 817893406
        },
        {
            "start": 817893409,
            "stop": 817893441
        },
        {
            "start": 817893474,
            "stop": 817893653
        },
        {
            "start": 817893672,
            "stop": 817893802
        },
        {
            "start": 817893843,
            "stop": 817893916
        },
        {
            "start": 817893936,
            "stop": 817894029
        },
        {
            "start": 817894056,
            "stop": 817894100
        },
        {
            "start": 817894103,
            "stop": 817894378
        },
        {
            "start": 817894397,
            "stop": 817894470
        },
        {
            "start": 817894490,
            "stop": 817894615
        },
        {
            "start": 817894643,
            "stop": 817894815
        },
        {
            "start": 817894849,
            "stop": 817894859
        },
        {
            "start": 817894880,
            "stop": 817894946
        }
    ]
}