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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_DATA/segments?format=api&page=3",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_DATA/segments?format=api",
    "results_count": 823,
    "results_per_page": 20,
    "num_pages": 42,
    "page_number": 2,
    "results": [
        {
            "start": 1369386030,
            "stop": 1369409817
        },
        {
            "start": 1369411298,
            "stop": 1369413649
        },
        {
            "start": 1369432797,
            "stop": 1369443373
        },
        {
            "start": 1369450588,
            "stop": 1369470643
        },
        {
            "start": 1369480556,
            "stop": 1369485043
        },
        {
            "start": 1369492342,
            "stop": 1369493116
        },
        {
            "start": 1369521579,
            "stop": 1369530570
        },
        {
            "start": 1369545660,
            "stop": 1369555842
        },
        {
            "start": 1369562361,
            "stop": 1369570422
        },
        {
            "start": 1369579670,
            "stop": 1369591412
        },
        {
            "start": 1369598234,
            "stop": 1369602116
        },
        {
            "start": 1369610209,
            "stop": 1369617585
        },
        {
            "start": 1369626067,
            "stop": 1369632035
        },
        {
            "start": 1369638079,
            "stop": 1369644126
        },
        {
            "start": 1369649613,
            "stop": 1369658687
        },
        {
            "start": 1369681145,
            "stop": 1369717050
        },
        {
            "start": 1369717388,
            "stop": 1369724290
        },
        {
            "start": 1369729650,
            "stop": 1369731495
        },
        {
            "start": 1369765810,
            "stop": 1369771903
        },
        {
            "start": 1369780122,
            "stop": 1369801450
        }
    ]
}