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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=299",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 300,
    "results": [
        {
            "start": 821714926,
            "stop": 821714946
        },
        {
            "start": 821714952,
            "stop": 821714977
        },
        {
            "start": 821714980,
            "stop": 821715042
        },
        {
            "start": 821715045,
            "stop": 821715109
        },
        {
            "start": 821715112,
            "stop": 821715135
        },
        {
            "start": 821715138,
            "stop": 821715140
        },
        {
            "start": 821715143,
            "stop": 821715193
        },
        {
            "start": 821715198,
            "stop": 821715199
        },
        {
            "start": 821715204,
            "stop": 821715206
        },
        {
            "start": 821715209,
            "stop": 821715238
        },
        {
            "start": 821715242,
            "stop": 821715251
        },
        {
            "start": 821715254,
            "stop": 821715270
        },
        {
            "start": 821715273,
            "stop": 821715302
        },
        {
            "start": 821715305,
            "stop": 821715310
        },
        {
            "start": 821715313,
            "stop": 821715327
        },
        {
            "start": 821715330,
            "stop": 821715374
        },
        {
            "start": 821715380,
            "stop": 821715381
        },
        {
            "start": 821715384,
            "stop": 821715389
        },
        {
            "start": 821715392,
            "stop": 821715653
        },
        {
            "start": 821715656,
            "stop": 821715772
        }
    ]
}