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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=65",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=63",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 64,
    "results": [
        {
            "start": 822704032,
            "stop": 822710139
        },
        {
            "start": 822710338,
            "stop": 822722816
        },
        {
            "start": 822722915,
            "stop": 822723073
        },
        {
            "start": 822723115,
            "stop": 822723116
        },
        {
            "start": 822723284,
            "stop": 822723493
        },
        {
            "start": 822723521,
            "stop": 822723522
        },
        {
            "start": 822723668,
            "stop": 822728672
        },
        {
            "start": 822728704,
            "stop": 822731232
        },
        {
            "start": 822731282,
            "stop": 822731289
        },
        {
            "start": 822731340,
            "stop": 822735435
        },
        {
            "start": 822736371,
            "stop": 822737893
        },
        {
            "start": 822740790,
            "stop": 822743113
        },
        {
            "start": 822743147,
            "stop": 822743148
        },
        {
            "start": 822743204,
            "stop": 822745333
        },
        {
            "start": 822745395,
            "stop": 822747040
        },
        {
            "start": 822747072,
            "stop": 822755520
        },
        {
            "start": 822755552,
            "stop": 822755769
        },
        {
            "start": 822755801,
            "stop": 822756236
        },
        {
            "start": 822756333,
            "stop": 822757813
        },
        {
            "start": 822757843,
            "stop": 822757844
        }
    ]
}