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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2/segments?format=api&page=455",
    "results_count": 16323,
    "results_per_page": 20,
    "num_pages": 817,
    "page_number": 456,
    "results": [
        {
            "start": 821777770,
            "stop": 821777771
        },
        {
            "start": 821777777,
            "stop": 821777781
        },
        {
            "start": 821777784,
            "stop": 821777789
        },
        {
            "start": 821777792,
            "stop": 821777796
        },
        {
            "start": 821777802,
            "stop": 821777803
        },
        {
            "start": 821777807,
            "stop": 821777810
        },
        {
            "start": 821777818,
            "stop": 821777826
        },
        {
            "start": 821777831,
            "stop": 821777834
        },
        {
            "start": 821777839,
            "stop": 821777844
        },
        {
            "start": 821777852,
            "stop": 821777858
        },
        {
            "start": 821777864,
            "stop": 821777867
        },
        {
            "start": 821777871,
            "stop": 821777872
        },
        {
            "start": 821777879,
            "stop": 821777894
        },
        {
            "start": 821777905,
            "stop": 821777912
        },
        {
            "start": 821777915,
            "stop": 821777921
        },
        {
            "start": 821777924,
            "stop": 821777930
        },
        {
            "start": 821777934,
            "stop": 821777935
        },
        {
            "start": 821777938,
            "stop": 821777939
        },
        {
            "start": 821777948,
            "stop": 821777955
        },
        {
            "start": 821777961,
            "stop": 821777965
        }
    ]
}