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=2314
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=2315",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2313",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2314,
    "results": [
        {
            "start": 871547745,
            "stop": 871548526
        },
        {
            "start": 871548543,
            "stop": 871550064
        },
        {
            "start": 871550081,
            "stop": 871550142
        },
        {
            "start": 871550159,
            "stop": 871550161
        },
        {
            "start": 871550178,
            "stop": 871550261
        },
        {
            "start": 871550278,
            "stop": 871550489
        },
        {
            "start": 871550506,
            "stop": 871550516
        },
        {
            "start": 871550533,
            "stop": 871550621
        },
        {
            "start": 871550638,
            "stop": 871550690
        },
        {
            "start": 871550707,
            "stop": 871550807
        },
        {
            "start": 871550824,
            "stop": 871551124
        },
        {
            "start": 871551141,
            "stop": 871551177
        },
        {
            "start": 871551219,
            "stop": 871551546
        },
        {
            "start": 871551563,
            "stop": 871551674
        },
        {
            "start": 871551691,
            "stop": 871552210
        },
        {
            "start": 871552227,
            "stop": 871552271
        },
        {
            "start": 871552288,
            "stop": 871552331
        },
        {
            "start": 871552348,
            "stop": 871552542
        },
        {
            "start": 871552559,
            "stop": 871552612
        },
        {
            "start": 871552629,
            "stop": 871552672
        }
    ]
}