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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT4/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT4/segments?format=api&page=300",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 301,
    "results": [
        {
            "start": 931769837,
            "stop": 931769839
        },
        {
            "start": 931769842,
            "stop": 931769844
        },
        {
            "start": 931769846,
            "stop": 931769850
        },
        {
            "start": 931769853,
            "stop": 931769855
        },
        {
            "start": 931769867,
            "stop": 931769874
        },
        {
            "start": 931769880,
            "stop": 931769881
        },
        {
            "start": 931769884,
            "stop": 931769885
        },
        {
            "start": 931769897,
            "stop": 931769898
        },
        {
            "start": 931769902,
            "stop": 931769907
        },
        {
            "start": 931769916,
            "stop": 931769918
        },
        {
            "start": 931769931,
            "stop": 931769933
        },
        {
            "start": 931769939,
            "stop": 931769943
        },
        {
            "start": 931769946,
            "stop": 931769947
        },
        {
            "start": 931769952,
            "stop": 931769957
        },
        {
            "start": 931769961,
            "stop": 931769963
        },
        {
            "start": 931769966,
            "stop": 931769967
        },
        {
            "start": 931769970,
            "stop": 931769971
        },
        {
            "start": 931769974,
            "stop": 931769979
        },
        {
            "start": 931769984,
            "stop": 931769989
        },
        {
            "start": 931769994,
            "stop": 931769995
        }
    ]
}