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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=122",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 123,
    "results": [
        {
            "start": 931679434,
            "stop": 931679442
        },
        {
            "start": 931679456,
            "stop": 931679464
        },
        {
            "start": 931679507,
            "stop": 931679509
        },
        {
            "start": 931679551,
            "stop": 931679552
        },
        {
            "start": 931679563,
            "stop": 931679571
        },
        {
            "start": 931679584,
            "stop": 931679593
        },
        {
            "start": 931679614,
            "stop": 931679617
        },
        {
            "start": 931679624,
            "stop": 931679635
        },
        {
            "start": 931679652,
            "stop": 931679659
        },
        {
            "start": 931679666,
            "stop": 931679693
        },
        {
            "start": 931679700,
            "stop": 931679702
        },
        {
            "start": 931679796,
            "stop": 931679799
        },
        {
            "start": 931679811,
            "stop": 931679814
        },
        {
            "start": 931679830,
            "stop": 931679837
        },
        {
            "start": 931679854,
            "stop": 931679859
        },
        {
            "start": 931679910,
            "stop": 931679912
        },
        {
            "start": 931679939,
            "stop": 931679941
        },
        {
            "start": 931679978,
            "stop": 931679982
        },
        {
            "start": 931680035,
            "stop": 931680038
        },
        {
            "start": 931680149,
            "stop": 931680150
        }
    ]
}