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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=320",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 321,
    "results": [
        {
            "start": 843981514,
            "stop": 843981593
        },
        {
            "start": 843984816,
            "stop": 843986707
        },
        {
            "start": 843986709,
            "stop": 843986731
        },
        {
            "start": 843987496,
            "stop": 843987611
        },
        {
            "start": 843987613,
            "stop": 843988043
        },
        {
            "start": 843990536,
            "stop": 843991752
        },
        {
            "start": 843991754,
            "stop": 843991798
        },
        {
            "start": 843991800,
            "stop": 843992960
        },
        {
            "start": 843994610,
            "stop": 843998872
        },
        {
            "start": 843999058,
            "stop": 843999957
        },
        {
            "start": 844000557,
            "stop": 844001569
        },
        {
            "start": 844001644,
            "stop": 844002188
        },
        {
            "start": 844003915,
            "stop": 844005417
        },
        {
            "start": 844005558,
            "stop": 844005611
        },
        {
            "start": 844005786,
            "stop": 844005947
        },
        {
            "start": 844005949,
            "stop": 844006701
        },
        {
            "start": 844006703,
            "stop": 844009798
        },
        {
            "start": 844009918,
            "stop": 844010227
        },
        {
            "start": 844010229,
            "stop": 844013325
        },
        {
            "start": 844014353,
            "stop": 844015892
        }
    ]
}