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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=366",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=364",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 365,
    "results": [
        {
            "start": 847731442,
            "stop": 847731444
        },
        {
            "start": 847731445,
            "stop": 847731461
        },
        {
            "start": 847731571,
            "stop": 847731572
        },
        {
            "start": 847731573,
            "stop": 847731585
        },
        {
            "start": 847731885,
            "stop": 847731891
        },
        {
            "start": 847731895,
            "stop": 847731915
        },
        {
            "start": 847731917,
            "stop": 847731935
        },
        {
            "start": 847731937,
            "stop": 847731953
        },
        {
            "start": 847731954,
            "stop": 847731978
        },
        {
            "start": 847731980,
            "stop": 847731983
        },
        {
            "start": 847731984,
            "stop": 847731988
        },
        {
            "start": 847731989,
            "stop": 847732008
        },
        {
            "start": 847732010,
            "stop": 847732063
        },
        {
            "start": 847732065,
            "stop": 847732106
        },
        {
            "start": 847732108,
            "stop": 847732148
        },
        {
            "start": 847732149,
            "stop": 847732151
        },
        {
            "start": 847732152,
            "stop": 847732169
        },
        {
            "start": 847732170,
            "stop": 847732191
        },
        {
            "start": 847732193,
            "stop": 847732211
        },
        {
            "start": 847732212,
            "stop": 847732235
        }
    ]
}