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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=455",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 456,
    "results": [
        {
            "start": 873245747,
            "stop": 873246017
        },
        {
            "start": 873246317,
            "stop": 873246546
        },
        {
            "start": 873247860,
            "stop": 873257944
        },
        {
            "start": 873258054,
            "stop": 873258114
        },
        {
            "start": 873258414,
            "stop": 873262620
        },
        {
            "start": 873262680,
            "stop": 873262860
        },
        {
            "start": 873262931,
            "stop": 873263026
        },
        {
            "start": 873263081,
            "stop": 873263227
        },
        {
            "start": 873263248,
            "stop": 873268212
        },
        {
            "start": 873268231,
            "stop": 873274695
        },
        {
            "start": 873274995,
            "stop": 873299997
        },
        {
            "start": 873300060,
            "stop": 873300864
        },
        {
            "start": 873300886,
            "stop": 873318386
        },
        {
            "start": 873318796,
            "stop": 873322094
        },
        {
            "start": 873322112,
            "stop": 873350550
        },
        {
            "start": 873350610,
            "stop": 873393977
        },
        {
            "start": 873393998,
            "stop": 873413430
        },
        {
            "start": 873413730,
            "stop": 873413989
        },
        {
            "start": 873414099,
            "stop": 873414320
        },
        {
            "start": 873414338,
            "stop": 873415558
        }
    ]
}