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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=149",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 150,
    "results": [
        {
            "start": 818053614,
            "stop": 818053615
        },
        {
            "start": 818053621,
            "stop": 818053630
        },
        {
            "start": 818053638,
            "stop": 818053648
        },
        {
            "start": 818053651,
            "stop": 818053655
        },
        {
            "start": 818053658,
            "stop": 818053660
        },
        {
            "start": 818053663,
            "stop": 818053667
        },
        {
            "start": 818053671,
            "stop": 818053708
        },
        {
            "start": 818053711,
            "stop": 818053732
        },
        {
            "start": 818053736,
            "stop": 818053740
        },
        {
            "start": 818053743,
            "stop": 818053744
        },
        {
            "start": 818053748,
            "stop": 818053749
        },
        {
            "start": 818053754,
            "stop": 818053778
        },
        {
            "start": 818053781,
            "stop": 818053784
        },
        {
            "start": 818053789,
            "stop": 818053793
        },
        {
            "start": 818053799,
            "stop": 818053806
        },
        {
            "start": 818053809,
            "stop": 818053814
        },
        {
            "start": 818053817,
            "stop": 818053824
        },
        {
            "start": 818053827,
            "stop": 818053829
        },
        {
            "start": 818053840,
            "stop": 818053842
        },
        {
            "start": 818053845,
            "stop": 818053851
        }
    ]
}