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=7
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=8",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=6",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 7,
    "results": [
        {
            "start": 816356313,
            "stop": 816360253
        },
        {
            "start": 816360987,
            "stop": 816363168
        },
        {
            "start": 816363171,
            "stop": 816363837
        },
        {
            "start": 816363840,
            "stop": 816363841
        },
        {
            "start": 816364506,
            "stop": 816369000
        },
        {
            "start": 816374569,
            "stop": 816377053
        },
        {
            "start": 816383502,
            "stop": 816383508
        },
        {
            "start": 816383535,
            "stop": 816384410
        },
        {
            "start": 816386130,
            "stop": 816387882
        },
        {
            "start": 816388101,
            "stop": 816389248
        },
        {
            "start": 816389280,
            "stop": 816390253
        },
        {
            "start": 816393435,
            "stop": 816394485
        },
        {
            "start": 816397338,
            "stop": 816400589
        },
        {
            "start": 816400592,
            "stop": 816419744
        },
        {
            "start": 816419776,
            "stop": 816430802
        },
        {
            "start": 816432144,
            "stop": 816438231
        },
        {
            "start": 816438233,
            "stop": 816439273
        },
        {
            "start": 816443733,
            "stop": 816444247
        },
        {
            "start": 816444354,
            "stop": 816445753
        },
        {
            "start": 816446360,
            "stop": 816448803
        }
    ]
}