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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=110",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 111,
    "results": [
        {
            "start": 819848139,
            "stop": 819848443
        },
        {
            "start": 819848624,
            "stop": 819849082
        },
        {
            "start": 819849090,
            "stop": 819849229
        },
        {
            "start": 819849238,
            "stop": 819849433
        },
        {
            "start": 819850670,
            "stop": 819850739
        },
        {
            "start": 819850746,
            "stop": 819850753
        },
        {
            "start": 819850869,
            "stop": 819851192
        },
        {
            "start": 819851206,
            "stop": 819851642
        },
        {
            "start": 819851649,
            "stop": 819852230
        },
        {
            "start": 819852310,
            "stop": 819853790
        },
        {
            "start": 819853870,
            "stop": 819855180
        },
        {
            "start": 819855240,
            "stop": 819856010
        },
        {
            "start": 819856090,
            "stop": 819856874
        },
        {
            "start": 819857006,
            "stop": 819858077
        },
        {
            "start": 819858084,
            "stop": 819858293
        },
        {
            "start": 819858301,
            "stop": 819858350
        },
        {
            "start": 819858430,
            "stop": 819858801
        },
        {
            "start": 819858808,
            "stop": 819859945
        },
        {
            "start": 819859953,
            "stop": 819859978
        },
        {
            "start": 819859985,
            "stop": 819860810
        }
    ]
}