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=42
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=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=41",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 42,
    "results": [
        {
            "start": 820660960,
            "stop": 820663936
        },
        {
            "start": 820663968,
            "stop": 820694496
        },
        {
            "start": 820694528,
            "stop": 820695652
        },
        {
            "start": 820696305,
            "stop": 820697571
        },
        {
            "start": 820697574,
            "stop": 820700087
        },
        {
            "start": 820700944,
            "stop": 820701664
        },
        {
            "start": 820701696,
            "stop": 820711712
        },
        {
            "start": 820711744,
            "stop": 820713046
        },
        {
            "start": 820713795,
            "stop": 820716167
        },
        {
            "start": 820717712,
            "stop": 820718528
        },
        {
            "start": 820718560,
            "stop": 820719136
        },
        {
            "start": 820719168,
            "stop": 820720922
        },
        {
            "start": 820720953,
            "stop": 820732008
        },
        {
            "start": 820733035,
            "stop": 820733824
        },
        {
            "start": 820734773,
            "stop": 820737133
        },
        {
            "start": 820737228,
            "stop": 820739108
        },
        {
            "start": 820739118,
            "stop": 820741511
        },
        {
            "start": 820742193,
            "stop": 820742976
        },
        {
            "start": 820743008,
            "stop": 820748953
        },
        {
            "start": 820750261,
            "stop": 820750993
        }
    ]
}