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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT2/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT2/segments?format=api&page=299",
    "results_count": 10804,
    "results_per_page": 20,
    "num_pages": 541,
    "page_number": 300,
    "results": [
        {
            "start": 933216921,
            "stop": 933228561
        },
        {
            "start": 933234841,
            "stop": 933236134
        },
        {
            "start": 933237803,
            "stop": 933250710
        },
        {
            "start": 933252472,
            "stop": 933264830
        },
        {
            "start": 933268926,
            "stop": 933268991
        },
        {
            "start": 933269425,
            "stop": 933272842
        },
        {
            "start": 933272845,
            "stop": 933273205
        },
        {
            "start": 933273208,
            "stop": 933273935
        },
        {
            "start": 933273938,
            "stop": 933274127
        },
        {
            "start": 933274130,
            "stop": 933276021
        },
        {
            "start": 933276024,
            "stop": 933276373
        },
        {
            "start": 933278719,
            "stop": 933281795
        },
        {
            "start": 933281798,
            "stop": 933289789
        },
        {
            "start": 933292866,
            "stop": 933304663
        },
        {
            "start": 933304665,
            "stop": 933304768
        },
        {
            "start": 933304770,
            "stop": 933304798
        },
        {
            "start": 933304800,
            "stop": 933305008
        },
        {
            "start": 933305010,
            "stop": 933308445
        },
        {
            "start": 933316739,
            "stop": 933346893
        },
        {
            "start": 933352584,
            "stop": 933352969
        }
    ]
}