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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3998",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3996",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 3997,
    "results": [
        {
            "start": 874755085,
            "stop": 874755352
        },
        {
            "start": 874755353,
            "stop": 874755809
        },
        {
            "start": 874755811,
            "stop": 874755815
        },
        {
            "start": 874755816,
            "stop": 874755850
        },
        {
            "start": 874755851,
            "stop": 874756178
        },
        {
            "start": 874756179,
            "stop": 874756475
        },
        {
            "start": 874756476,
            "stop": 874756510
        },
        {
            "start": 874756511,
            "stop": 874756611
        },
        {
            "start": 874756612,
            "stop": 874756617
        },
        {
            "start": 874756618,
            "stop": 874756760
        },
        {
            "start": 874756761,
            "stop": 874757003
        },
        {
            "start": 874757004,
            "stop": 874757506
        },
        {
            "start": 874757507,
            "stop": 874757529
        },
        {
            "start": 874757530,
            "stop": 874757533
        },
        {
            "start": 874757534,
            "stop": 874757686
        },
        {
            "start": 874757687,
            "stop": 874758065
        },
        {
            "start": 874758066,
            "stop": 874758976
        },
        {
            "start": 874758977,
            "stop": 874759412
        },
        {
            "start": 874759413,
            "stop": 874759668
        },
        {
            "start": 874759669,
            "stop": 874759722
        }
    ]
}