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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT4/segments?format=api&page=99",
    "results_count": 199168,
    "results_per_page": 20,
    "num_pages": 9959,
    "page_number": 100,
    "results": [
        {
            "start": 818108239,
            "stop": 818108579
        },
        {
            "start": 818108699,
            "stop": 818108880
        },
        {
            "start": 818108940,
            "stop": 818109180
        },
        {
            "start": 818109240,
            "stop": 818109420
        },
        {
            "start": 818109480,
            "stop": 818109600
        },
        {
            "start": 818109660,
            "stop": 818109720
        },
        {
            "start": 818109780,
            "stop": 818110020
        },
        {
            "start": 818110080,
            "stop": 818110200
        },
        {
            "start": 818110260,
            "stop": 818110440
        },
        {
            "start": 818110500,
            "stop": 818110560
        },
        {
            "start": 818110620,
            "stop": 818110740
        },
        {
            "start": 818110920,
            "stop": 818110980
        },
        {
            "start": 818111160,
            "stop": 818111760
        },
        {
            "start": 818111880,
            "stop": 818111940
        },
        {
            "start": 818112060,
            "stop": 818112120
        },
        {
            "start": 818112710,
            "stop": 818112720
        },
        {
            "start": 818120710,
            "stop": 818120736
        },
        {
            "start": 818121373,
            "stop": 818121377
        },
        {
            "start": 818121497,
            "stop": 818121508
        },
        {
            "start": 818121628,
            "stop": 818121631
        }
    ]
}