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=3125
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=3126",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3124",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3125,
    "results": [
        {
            "start": 867966830,
            "stop": 867968250
        },
        {
            "start": 867968254,
            "stop": 867971220
        },
        {
            "start": 867971280,
            "stop": 867978392
        },
        {
            "start": 867978396,
            "stop": 867984133
        },
        {
            "start": 867984136,
            "stop": 867991200
        },
        {
            "start": 867991260,
            "stop": 867995913
        },
        {
            "start": 867995916,
            "stop": 867999844
        },
        {
            "start": 867999848,
            "stop": 868006620
        },
        {
            "start": 868006680,
            "stop": 868014480
        },
        {
            "start": 868014600,
            "stop": 868021020
        },
        {
            "start": 868021140,
            "stop": 868022400
        },
        {
            "start": 868022460,
            "stop": 868022760
        },
        {
            "start": 868022828,
            "stop": 868024740
        },
        {
            "start": 868024860,
            "stop": 868025514
        },
        {
            "start": 868025518,
            "stop": 868027140
        },
        {
            "start": 868027200,
            "stop": 868027860
        },
        {
            "start": 868027980,
            "stop": 868028134
        },
        {
            "start": 868028252,
            "stop": 868028760
        },
        {
            "start": 868028820,
            "stop": 868030491
        },
        {
            "start": 868030495,
            "stop": 868030860
        }
    ]
}