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=1337
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=1338",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=1336",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 1337,
    "results": [
        {
            "start": 843844791,
            "stop": 843844792
        },
        {
            "start": 843844795,
            "stop": 843844825
        },
        {
            "start": 843844828,
            "stop": 843844831
        },
        {
            "start": 843844834,
            "stop": 843844839
        },
        {
            "start": 843844842,
            "stop": 843844844
        },
        {
            "start": 843844847,
            "stop": 843844849
        },
        {
            "start": 843844852,
            "stop": 843844900
        },
        {
            "start": 843844903,
            "stop": 843844911
        },
        {
            "start": 843844914,
            "stop": 843844919
        },
        {
            "start": 843844926,
            "stop": 843844929
        },
        {
            "start": 843844932,
            "stop": 843844955
        },
        {
            "start": 843844958,
            "stop": 843844961
        },
        {
            "start": 843844967,
            "stop": 843845021
        },
        {
            "start": 843845024,
            "stop": 843845026
        },
        {
            "start": 843845039,
            "stop": 843845042
        },
        {
            "start": 843845046,
            "stop": 843845068
        },
        {
            "start": 843845071,
            "stop": 843845092
        },
        {
            "start": 843845096,
            "stop": 843845171
        },
        {
            "start": 843845177,
            "stop": 843845214
        },
        {
            "start": 843845219,
            "stop": 843845232
        }
    ]
}