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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_CW_CAT1/segments?format=api&page=6",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_CW_CAT1/segments?format=api&page=4",
    "results_count": 568,
    "results_per_page": 20,
    "num_pages": 29,
    "page_number": 5,
    "results": [
        {
            "start": 1371269519,
            "stop": 1371271519
        },
        {
            "start": 1371274409,
            "stop": 1371276583
        },
        {
            "start": 1371280342,
            "stop": 1371303215
        },
        {
            "start": 1371326758,
            "stop": 1371333864
        },
        {
            "start": 1371342739,
            "stop": 1371344697
        },
        {
            "start": 1371348469,
            "stop": 1371402570
        },
        {
            "start": 1371406469,
            "stop": 1371410039
        },
        {
            "start": 1371422982,
            "stop": 1371430111
        },
        {
            "start": 1371433312,
            "stop": 1371469654
        },
        {
            "start": 1371474513,
            "stop": 1371480535
        },
        {
            "start": 1371483178,
            "stop": 1371489848
        },
        {
            "start": 1371503737,
            "stop": 1371516584
        },
        {
            "start": 1371520929,
            "stop": 1371582548
        },
        {
            "start": 1371587822,
            "stop": 1371591626
        },
        {
            "start": 1371593146,
            "stop": 1371593217
        },
        {
            "start": 1371598235,
            "stop": 1371673414
        },
        {
            "start": 1371679533,
            "stop": 1371714137
        },
        {
            "start": 1371727468,
            "stop": 1371766052
        },
        {
            "start": 1371769102,
            "stop": 1371815313
        },
        {
            "start": 1371819618,
            "stop": 1371831242
        }
    ]
}