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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT2/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT2/segments?format=api&page=100",
    "results_count": 37993,
    "results_per_page": 20,
    "num_pages": 1900,
    "page_number": 101,
    "results": [
        {
            "start": 931509568,
            "stop": 931509581
        },
        {
            "start": 931509586,
            "stop": 931509599
        },
        {
            "start": 931509602,
            "stop": 931509645
        },
        {
            "start": 931509648,
            "stop": 931509695
        },
        {
            "start": 931509698,
            "stop": 931509708
        },
        {
            "start": 931509711,
            "stop": 931509743
        },
        {
            "start": 931509748,
            "stop": 931509770
        },
        {
            "start": 931509775,
            "stop": 931509779
        },
        {
            "start": 931509782,
            "stop": 931509815
        },
        {
            "start": 931509818,
            "stop": 931509821
        },
        {
            "start": 931509824,
            "stop": 931509826
        },
        {
            "start": 931509830,
            "stop": 931509833
        },
        {
            "start": 931509836,
            "stop": 931509850
        },
        {
            "start": 931509853,
            "stop": 931509859
        },
        {
            "start": 931509862,
            "stop": 931509868
        },
        {
            "start": 931509871,
            "stop": 931509878
        },
        {
            "start": 931509881,
            "stop": 931509916
        },
        {
            "start": 931509919,
            "stop": 931509925
        },
        {
            "start": 931509928,
            "stop": 931509939
        },
        {
            "start": 931509942,
            "stop": 931509952
        }
    ]
}