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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=223",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CW_CAT1/segments?format=api&page=221",
    "results_count": 7262,
    "results_per_page": 20,
    "num_pages": 364,
    "page_number": 222,
    "results": [
        {
            "start": 847803691,
            "stop": 847811773
        },
        {
            "start": 847819476,
            "stop": 847820810
        },
        {
            "start": 847821199,
            "stop": 847821250
        },
        {
            "start": 847823778,
            "stop": 847823941
        },
        {
            "start": 847826448,
            "stop": 847834691
        },
        {
            "start": 847837065,
            "stop": 847837393
        },
        {
            "start": 847838012,
            "stop": 847841040
        },
        {
            "start": 847842323,
            "stop": 847883699
        },
        {
            "start": 847887376,
            "stop": 847900072
        },
        {
            "start": 847901978,
            "stop": 847915333
        },
        {
            "start": 847916130,
            "stop": 847922223
        },
        {
            "start": 847922827,
            "stop": 847945256
        },
        {
            "start": 847952376,
            "stop": 847952415
        },
        {
            "start": 847952938,
            "stop": 847955138
        },
        {
            "start": 847957965,
            "stop": 847998406
        },
        {
            "start": 848001235,
            "stop": 848004613
        },
        {
            "start": 848005122,
            "stop": 848007207
        },
        {
            "start": 848007211,
            "stop": 848011273
        },
        {
            "start": 848011277,
            "stop": 848014671
        },
        {
            "start": 848015191,
            "stop": 848031224
        }
    ]
}