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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=152",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=150",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 151,
    "results": [
        {
            "start": 858965510,
            "stop": 858966263
        },
        {
            "start": 858968477,
            "stop": 858970475
        },
        {
            "start": 858970634,
            "stop": 858973812
        },
        {
            "start": 858974969,
            "stop": 858985565
        },
        {
            "start": 858986760,
            "stop": 859042618
        },
        {
            "start": 859059180,
            "stop": 859068995
        },
        {
            "start": 859070175,
            "stop": 859074385
        },
        {
            "start": 859074472,
            "stop": 859074585
        },
        {
            "start": 859074674,
            "stop": 859074823
        },
        {
            "start": 859074923,
            "stop": 859075141
        },
        {
            "start": 859075285,
            "stop": 859075883
        },
        {
            "start": 859076148,
            "stop": 859077083
        },
        {
            "start": 859077137,
            "stop": 859078191
        },
        {
            "start": 859078235,
            "stop": 859078634
        },
        {
            "start": 859078899,
            "stop": 859079527
        },
        {
            "start": 859080526,
            "stop": 859080535
        },
        {
            "start": 859080632,
            "stop": 859084717
        },
        {
            "start": 859084798,
            "stop": 859085183
        },
        {
            "start": 859085333,
            "stop": 859085585
        },
        {
            "start": 859085648,
            "stop": 859085917
        }
    ]
}