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=300
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=301",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=299",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 300,
    "results": [
        {
            "start": 1181385986,
            "stop": 1181385987
        },
        {
            "start": 1181385988,
            "stop": 1181385989
        },
        {
            "start": 1181385990,
            "stop": 1181385993
        },
        {
            "start": 1181385994,
            "stop": 1181385995
        },
        {
            "start": 1181385996,
            "stop": 1181385997
        },
        {
            "start": 1181385998,
            "stop": 1181386004
        },
        {
            "start": 1181386005,
            "stop": 1181386009
        },
        {
            "start": 1181390201,
            "stop": 1181390738
        },
        {
            "start": 1181390739,
            "stop": 1181391494
        },
        {
            "start": 1181391495,
            "stop": 1181391662
        },
        {
            "start": 1181391663,
            "stop": 1181392753
        },
        {
            "start": 1181392754,
            "stop": 1181394738
        },
        {
            "start": 1181394739,
            "stop": 1181396583
        },
        {
            "start": 1181398926,
            "stop": 1181401149
        },
        {
            "start": 1181401150,
            "stop": 1181401228
        },
        {
            "start": 1181445242,
            "stop": 1181447687
        },
        {
            "start": 1181447688,
            "stop": 1181450047
        },
        {
            "start": 1181450048,
            "stop": 1181451078
        },
        {
            "start": 1181451080,
            "stop": 1181453227
        },
        {
            "start": 1181453229,
            "stop": 1181454558
        }
    ]
}