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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=99",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CW_CAT1/segments?format=api&page=97",
    "results_count": 3094,
    "results_per_page": 20,
    "num_pages": 155,
    "page_number": 98,
    "results": [
        {
            "start": 957116417,
            "stop": 957116710
        },
        {
            "start": 957124728,
            "stop": 957129710
        },
        {
            "start": 957130065,
            "stop": 957135970
        },
        {
            "start": 957160767,
            "stop": 957176306
        },
        {
            "start": 957179022,
            "stop": 957179194
        },
        {
            "start": 957180658,
            "stop": 957181090
        },
        {
            "start": 957182977,
            "stop": 957184629
        },
        {
            "start": 957186082,
            "stop": 957190821
        },
        {
            "start": 957191102,
            "stop": 957195351
        },
        {
            "start": 957196610,
            "stop": 957204846
        },
        {
            "start": 957207302,
            "stop": 957209971
        },
        {
            "start": 957211033,
            "stop": 957216329
        },
        {
            "start": 957229340,
            "stop": 957229926
        },
        {
            "start": 957247016,
            "stop": 957249377
        },
        {
            "start": 957250491,
            "stop": 957269712
        },
        {
            "start": 957272389,
            "stop": 957279768
        },
        {
            "start": 957281258,
            "stop": 957288411
        },
        {
            "start": 957292931,
            "stop": 957302618
        },
        {
            "start": 957333559,
            "stop": 957334670
        },
        {
            "start": 957335143,
            "stop": 957342396
        }
    ]
}