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_BURST_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_BURST_CAT3/segments?format=api&page=112",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=110",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 111,
    "results": [
        {
            "start": 819992471,
            "stop": 819992557
        },
        {
            "start": 819992560,
            "stop": 819992930
        },
        {
            "start": 819992933,
            "stop": 819993040
        },
        {
            "start": 819993043,
            "stop": 819993115
        },
        {
            "start": 819993118,
            "stop": 819993129
        },
        {
            "start": 819993132,
            "stop": 819993743
        },
        {
            "start": 819993746,
            "stop": 819994010
        },
        {
            "start": 819994013,
            "stop": 819994140
        },
        {
            "start": 819994143,
            "stop": 819994474
        },
        {
            "start": 819994479,
            "stop": 819994520
        },
        {
            "start": 819994523,
            "stop": 819994573
        },
        {
            "start": 819994576,
            "stop": 819994685
        },
        {
            "start": 819994688,
            "stop": 819994758
        },
        {
            "start": 819994763,
            "stop": 819995073
        },
        {
            "start": 819995076,
            "stop": 819995334
        },
        {
            "start": 819995337,
            "stop": 819995540
        },
        {
            "start": 819995543,
            "stop": 819995613
        },
        {
            "start": 819995616,
            "stop": 819995635
        },
        {
            "start": 819995638,
            "stop": 819995760
        },
        {
            "start": 819995763,
            "stop": 819996677
        }
    ]
}