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=101
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=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=100",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 101,
    "results": [
        {
            "start": 819911160,
            "stop": 819911292
        },
        {
            "start": 819911295,
            "stop": 819911896
        },
        {
            "start": 819911899,
            "stop": 819911904
        },
        {
            "start": 819911907,
            "stop": 819913629
        },
        {
            "start": 819913759,
            "stop": 819914434
        },
        {
            "start": 819914437,
            "stop": 819914473
        },
        {
            "start": 819914670,
            "stop": 819915320
        },
        {
            "start": 819915323,
            "stop": 819916213
        },
        {
            "start": 819916431,
            "stop": 819917225
        },
        {
            "start": 819917228,
            "stop": 819918420
        },
        {
            "start": 819918480,
            "stop": 819920820
        },
        {
            "start": 819920940,
            "stop": 819920947
        },
        {
            "start": 819920953,
            "stop": 819921600
        },
        {
            "start": 819921660,
            "stop": 819922390
        },
        {
            "start": 819923510,
            "stop": 819925197
        },
        {
            "start": 819925201,
            "stop": 819926986
        },
        {
            "start": 819926989,
            "stop": 819927201
        },
        {
            "start": 819930752,
            "stop": 819930853
        },
        {
            "start": 819931087,
            "stop": 819931620
        },
        {
            "start": 819931680,
            "stop": 819933731
        }
    ]
}