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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=31",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=29",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 30,
    "results": [
        {
            "start": 819662144,
            "stop": 819697618
        },
        {
            "start": 819698739,
            "stop": 819725831
        },
        {
            "start": 819726138,
            "stop": 819729063
        },
        {
            "start": 819731983,
            "stop": 819734746
        },
        {
            "start": 819755886,
            "stop": 819756282
        },
        {
            "start": 819757726,
            "stop": 819760350
        },
        {
            "start": 819761763,
            "stop": 819763784
        },
        {
            "start": 819764281,
            "stop": 819768054
        },
        {
            "start": 819768252,
            "stop": 819790002
        },
        {
            "start": 819791652,
            "stop": 819801969
        },
        {
            "start": 819803753,
            "stop": 819822551
        },
        {
            "start": 819823046,
            "stop": 819825377
        },
        {
            "start": 819827551,
            "stop": 819828245
        },
        {
            "start": 819828488,
            "stop": 819829956
        },
        {
            "start": 819830689,
            "stop": 819837732
        },
        {
            "start": 819839073,
            "stop": 819841253
        },
        {
            "start": 819841372,
            "stop": 819842625
        },
        {
            "start": 819843526,
            "stop": 819847154
        },
        {
            "start": 819847379,
            "stop": 819849445
        },
        {
            "start": 819850670,
            "stop": 819850783
        }
    ]
}