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/L1_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/L1_DATA/segments?format=api&page=3",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_DATA/segments?format=api",
    "results_count": 568,
    "results_per_page": 20,
    "num_pages": 29,
    "page_number": 2,
    "results": [
        {
            "start": 1369575206,
            "stop": 1369579422
        },
        {
            "start": 1369584420,
            "stop": 1369601745
        },
        {
            "start": 1369604337,
            "stop": 1369605879
        },
        {
            "start": 1369609099,
            "stop": 1369622397
        },
        {
            "start": 1369622424,
            "stop": 1369673900
        },
        {
            "start": 1369674200,
            "stop": 1369703504
        },
        {
            "start": 1369703930,
            "stop": 1369752399
        },
        {
            "start": 1369758174,
            "stop": 1369762255
        },
        {
            "start": 1369763003,
            "stop": 1369815975
        },
        {
            "start": 1369839764,
            "stop": 1369868964
        },
        {
            "start": 1369885028,
            "stop": 1369946324
        },
        {
            "start": 1369952773,
            "stop": 1369955806
        },
        {
            "start": 1369959099,
            "stop": 1370016465
        },
        {
            "start": 1370019388,
            "stop": 1370037093
        },
        {
            "start": 1370040112,
            "stop": 1370078760
        },
        {
            "start": 1370086201,
            "stop": 1370095229
        },
        {
            "start": 1370112834,
            "stop": 1370113788
        },
        {
            "start": 1370116689,
            "stop": 1370178000
        },
        {
            "start": 1370185937,
            "stop": 1370207056
        },
        {
            "start": 1370208939,
            "stop": 1370274780
        }
    ]
}