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=111
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=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=110",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 111,
    "results": [
        {
            "start": 825914082,
            "stop": 825914222
        },
        {
            "start": 825914226,
            "stop": 825914333
        },
        {
            "start": 825914347,
            "stop": 825914396
        },
        {
            "start": 825914405,
            "stop": 825914472
        },
        {
            "start": 825914476,
            "stop": 825914517
        },
        {
            "start": 825914529,
            "stop": 825914532
        },
        {
            "start": 825914539,
            "stop": 825914541
        },
        {
            "start": 825914558,
            "stop": 825914566
        },
        {
            "start": 825914570,
            "stop": 825914576
        },
        {
            "start": 825914580,
            "stop": 825914622
        },
        {
            "start": 825914626,
            "stop": 825914680
        },
        {
            "start": 825914684,
            "stop": 825914703
        },
        {
            "start": 825914707,
            "stop": 825914771
        },
        {
            "start": 825914775,
            "stop": 825914780
        },
        {
            "start": 825914789,
            "stop": 825914850
        },
        {
            "start": 825914854,
            "stop": 825914868
        },
        {
            "start": 825914872,
            "stop": 825914906
        },
        {
            "start": 825914910,
            "stop": 825914935
        },
        {
            "start": 825914939,
            "stop": 825914947
        },
        {
            "start": 825914950,
            "stop": 825914956
        }
    ]
}