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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=129",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=127",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 128,
    "results": [
        {
            "start": 1176610279,
            "stop": 1176610330
        },
        {
            "start": 1176610333,
            "stop": 1176610340
        },
        {
            "start": 1176610343,
            "stop": 1176610344
        },
        {
            "start": 1176610345,
            "stop": 1176610354
        },
        {
            "start": 1176610356,
            "stop": 1176610359
        },
        {
            "start": 1176610361,
            "stop": 1176610425
        },
        {
            "start": 1176610426,
            "stop": 1176610434
        },
        {
            "start": 1176610443,
            "stop": 1176610447
        },
        {
            "start": 1176610450,
            "stop": 1176610452
        },
        {
            "start": 1176610453,
            "stop": 1176610498
        },
        {
            "start": 1176610499,
            "stop": 1176610521
        },
        {
            "start": 1176610523,
            "stop": 1176610525
        },
        {
            "start": 1176610529,
            "stop": 1176610608
        },
        {
            "start": 1176610613,
            "stop": 1176610671
        },
        {
            "start": 1176610675,
            "stop": 1176610676
        },
        {
            "start": 1176610678,
            "stop": 1176610682
        },
        {
            "start": 1176610687,
            "stop": 1176610716
        },
        {
            "start": 1176610720,
            "stop": 1176610735
        },
        {
            "start": 1176610737,
            "stop": 1176610739
        },
        {
            "start": 1176610740,
            "stop": 1176610748
        }
    ]
}