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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT3/segments?format=api&page=455",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 456,
    "results": [
        {
            "start": 1183096543,
            "stop": 1183097840
        },
        {
            "start": 1183097843,
            "stop": 1183098090
        },
        {
            "start": 1183098093,
            "stop": 1183098234
        },
        {
            "start": 1183098235,
            "stop": 1183098587
        },
        {
            "start": 1183098589,
            "stop": 1183100200
        },
        {
            "start": 1183100203,
            "stop": 1183100382
        },
        {
            "start": 1183100384,
            "stop": 1183100865
        },
        {
            "start": 1183100867,
            "stop": 1183101075
        },
        {
            "start": 1183101079,
            "stop": 1183101568
        },
        {
            "start": 1183101570,
            "stop": 1183102500
        },
        {
            "start": 1183102502,
            "stop": 1183103518
        },
        {
            "start": 1183103521,
            "stop": 1183104571
        },
        {
            "start": 1183104574,
            "stop": 1183104872
        },
        {
            "start": 1183104875,
            "stop": 1183105256
        },
        {
            "start": 1183105259,
            "stop": 1183105260
        },
        {
            "start": 1183105263,
            "stop": 1183105391
        },
        {
            "start": 1183105393,
            "stop": 1183106009
        },
        {
            "start": 1183106011,
            "stop": 1183106772
        },
        {
            "start": 1183106774,
            "stop": 1183107959
        },
        {
            "start": 1183107961,
            "stop": 1183108357
        }
    ]
}