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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=91",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=89",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 90,
    "results": [
        {
            "start": 824725019,
            "stop": 824725061
        },
        {
            "start": 824725070,
            "stop": 824725739
        },
        {
            "start": 824725743,
            "stop": 824725928
        },
        {
            "start": 824725937,
            "stop": 824726058
        },
        {
            "start": 824726067,
            "stop": 824726087
        },
        {
            "start": 824726091,
            "stop": 824726097
        },
        {
            "start": 824726101,
            "stop": 824726277
        },
        {
            "start": 824726281,
            "stop": 824726404
        },
        {
            "start": 824726417,
            "stop": 824726423
        },
        {
            "start": 824726441,
            "stop": 824726497
        },
        {
            "start": 824726506,
            "stop": 824726512
        },
        {
            "start": 824726516,
            "stop": 824726568
        },
        {
            "start": 824726572,
            "stop": 824726656
        },
        {
            "start": 824726660,
            "stop": 824726848
        },
        {
            "start": 824726857,
            "stop": 824726864
        },
        {
            "start": 824726867,
            "stop": 824729164
        },
        {
            "start": 824729168,
            "stop": 824729338
        },
        {
            "start": 824729342,
            "stop": 824729532
        },
        {
            "start": 824729536,
            "stop": 824729682
        },
        {
            "start": 824729686,
            "stop": 824729760
        }
    ]
}