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=2302
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=2303",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2301",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2302,
    "results": [
        {
            "start": 871334981,
            "stop": 871335023
        },
        {
            "start": 871341250,
            "stop": 871341300
        },
        {
            "start": 871341360,
            "stop": 871341855
        },
        {
            "start": 871341872,
            "stop": 871342342
        },
        {
            "start": 871342359,
            "stop": 871342688
        },
        {
            "start": 871342708,
            "stop": 871342714
        },
        {
            "start": 871342721,
            "stop": 871343160
        },
        {
            "start": 871343220,
            "stop": 871343741
        },
        {
            "start": 871343758,
            "stop": 871343940
        },
        {
            "start": 871344000,
            "stop": 871344181
        },
        {
            "start": 871344198,
            "stop": 871344600
        },
        {
            "start": 871344660,
            "stop": 871345928
        },
        {
            "start": 871345935,
            "stop": 871346394
        },
        {
            "start": 871346411,
            "stop": 871346436
        },
        {
            "start": 871346515,
            "stop": 871347437
        },
        {
            "start": 871347454,
            "stop": 871347524
        },
        {
            "start": 871347825,
            "stop": 871348560
        },
        {
            "start": 871348620,
            "stop": 871349424
        },
        {
            "start": 871349429,
            "stop": 871349848
        },
        {
            "start": 871349865,
            "stop": 871350082
        }
    ]
}