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=8080
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=8081",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=8079",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 8080,
    "results": [
        {
            "start": 872419903,
            "stop": 872420812
        },
        {
            "start": 872420831,
            "stop": 872420922
        },
        {
            "start": 872420941,
            "stop": 872421166
        },
        {
            "start": 872421185,
            "stop": 872421253
        },
        {
            "start": 872421272,
            "stop": 872421301
        },
        {
            "start": 872421320,
            "stop": 872421362
        },
        {
            "start": 872421381,
            "stop": 872421945
        },
        {
            "start": 872421964,
            "stop": 872421968
        },
        {
            "start": 872421987,
            "stop": 872422059
        },
        {
            "start": 872422076,
            "stop": 872422118
        },
        {
            "start": 872422142,
            "stop": 872422184
        },
        {
            "start": 872422203,
            "stop": 872422286
        },
        {
            "start": 872422305,
            "stop": 872422313
        },
        {
            "start": 872422332,
            "stop": 872422639
        },
        {
            "start": 872422658,
            "stop": 872422664
        },
        {
            "start": 872422683,
            "stop": 872422687
        },
        {
            "start": 872422712,
            "stop": 872422932
        },
        {
            "start": 872422949,
            "stop": 872423085
        },
        {
            "start": 872423104,
            "stop": 872423211
        },
        {
            "start": 872423230,
            "stop": 872423347
        }
    ]
}