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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=199",
    "results_count": 10853,
    "results_per_page": 20,
    "num_pages": 543,
    "page_number": 200,
    "results": [
        {
            "start": 931662481,
            "stop": 931662677
        },
        {
            "start": 931662679,
            "stop": 931662727
        },
        {
            "start": 931662729,
            "stop": 931662737
        },
        {
            "start": 931662738,
            "stop": 931662762
        },
        {
            "start": 931662763,
            "stop": 931663063
        },
        {
            "start": 931663065,
            "stop": 931663098
        },
        {
            "start": 931663100,
            "stop": 931663106
        },
        {
            "start": 931663107,
            "stop": 931663108
        },
        {
            "start": 931663110,
            "stop": 931663113
        },
        {
            "start": 931663115,
            "stop": 931663116
        },
        {
            "start": 931663120,
            "stop": 931663126
        },
        {
            "start": 931663130,
            "stop": 931663134
        },
        {
            "start": 931663136,
            "stop": 931663138
        },
        {
            "start": 931663142,
            "stop": 931663146
        },
        {
            "start": 931663148,
            "stop": 931663155
        },
        {
            "start": 931663157,
            "stop": 931663158
        },
        {
            "start": 931663164,
            "stop": 931663165
        },
        {
            "start": 931663167,
            "stop": 931663168
        },
        {
            "start": 931663172,
            "stop": 931663188
        },
        {
            "start": 931663192,
            "stop": 931663193
        }
    ]
}