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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=202",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=200",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 201,
    "results": [
        {
            "start": 850775128,
            "stop": 850776803
        },
        {
            "start": 850776878,
            "stop": 850784974
        },
        {
            "start": 850785106,
            "stop": 850785192
        },
        {
            "start": 850785249,
            "stop": 850793187
        },
        {
            "start": 850793776,
            "stop": 850809946
        },
        {
            "start": 850812638,
            "stop": 850822431
        },
        {
            "start": 850822689,
            "stop": 850832481
        },
        {
            "start": 850833373,
            "stop": 850856937
        },
        {
            "start": 850873731,
            "stop": 850893108
        },
        {
            "start": 850896360,
            "stop": 850912540
        },
        {
            "start": 850914436,
            "stop": 850920457
        },
        {
            "start": 850920526,
            "stop": 850925663
        },
        {
            "start": 850925772,
            "stop": 850927508
        },
        {
            "start": 850929537,
            "stop": 850930622
        },
        {
            "start": 850930691,
            "stop": 850931613
        },
        {
            "start": 850932349,
            "stop": 850947010
        },
        {
            "start": 850952192,
            "stop": 850969320
        },
        {
            "start": 850970175,
            "stop": 850977313
        },
        {
            "start": 850979036,
            "stop": 850979532
        },
        {
            "start": 850980360,
            "stop": 850985146
        }
    ]
}