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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=1235",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=1233",
    "results_count": 28169,
    "results_per_page": 20,
    "num_pages": 1409,
    "page_number": 1234,
    "results": [
        {
            "start": 957345145,
            "stop": 957345384
        },
        {
            "start": 957345386,
            "stop": 957345509
        },
        {
            "start": 957345511,
            "stop": 957345513
        },
        {
            "start": 957345515,
            "stop": 957345669
        },
        {
            "start": 957345671,
            "stop": 957345945
        },
        {
            "start": 957345947,
            "stop": 957346122
        },
        {
            "start": 957346124,
            "stop": 957346240
        },
        {
            "start": 957346242,
            "stop": 957346447
        },
        {
            "start": 957346449,
            "stop": 957346791
        },
        {
            "start": 957346793,
            "stop": 957346852
        },
        {
            "start": 957346854,
            "stop": 957346870
        },
        {
            "start": 957346872,
            "stop": 957347007
        },
        {
            "start": 957347008,
            "stop": 957347060
        },
        {
            "start": 957347062,
            "stop": 957347093
        },
        {
            "start": 957347095,
            "stop": 957347272
        },
        {
            "start": 957347274,
            "stop": 957347437
        },
        {
            "start": 957347439,
            "stop": 957347452
        },
        {
            "start": 957347454,
            "stop": 957347481
        },
        {
            "start": 957347483,
            "stop": 957347618
        },
        {
            "start": 957347620,
            "stop": 957347790
        }
    ]
}