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=32
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=33",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=31",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 32,
    "results": [
        {
            "start": 819642439,
            "stop": 819657071
        },
        {
            "start": 819659384,
            "stop": 819659520
        },
        {
            "start": 819659552,
            "stop": 819660992
        },
        {
            "start": 819661024,
            "stop": 819661316
        },
        {
            "start": 819662144,
            "stop": 819666176
        },
        {
            "start": 819666208,
            "stop": 819686944
        },
        {
            "start": 819687488,
            "stop": 819697618
        },
        {
            "start": 819698739,
            "stop": 819725831
        },
        {
            "start": 819726138,
            "stop": 819729063
        },
        {
            "start": 819731983,
            "stop": 819734713
        },
        {
            "start": 819755886,
            "stop": 819756282
        },
        {
            "start": 819757726,
            "stop": 819760333
        },
        {
            "start": 819761763,
            "stop": 819763753
        },
        {
            "start": 819764281,
            "stop": 819768054
        },
        {
            "start": 819768252,
            "stop": 819790002
        },
        {
            "start": 819791652,
            "stop": 819801969
        },
        {
            "start": 819803753,
            "stop": 819807072
        },
        {
            "start": 819807104,
            "stop": 819811200
        },
        {
            "start": 819811232,
            "stop": 819822551
        },
        {
            "start": 819823046,
            "stop": 819825373
        }
    ]
}