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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT4/segments?format=api&page=202",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT4/segments?format=api&page=200",
    "results_count": 107776,
    "results_per_page": 20,
    "num_pages": 5389,
    "page_number": 201,
    "results": [
        {
            "start": 931446504,
            "stop": 931446601
        },
        {
            "start": 931446603,
            "stop": 931446793
        },
        {
            "start": 931446795,
            "stop": 931446849
        },
        {
            "start": 931446852,
            "stop": 931446985
        },
        {
            "start": 931446987,
            "stop": 931446990
        },
        {
            "start": 931446992,
            "stop": 931447261
        },
        {
            "start": 931447381,
            "stop": 931447399
        },
        {
            "start": 931447402,
            "stop": 931447510
        },
        {
            "start": 931447512,
            "stop": 931448056
        },
        {
            "start": 931448057,
            "stop": 931448090
        },
        {
            "start": 931448092,
            "stop": 931448212
        },
        {
            "start": 931448214,
            "stop": 931448268
        },
        {
            "start": 931448270,
            "stop": 931448322
        },
        {
            "start": 931448324,
            "stop": 931448447
        },
        {
            "start": 931448449,
            "stop": 931448489
        },
        {
            "start": 931448491,
            "stop": 931448521
        },
        {
            "start": 931448523,
            "stop": 931448712
        },
        {
            "start": 931448714,
            "stop": 931448853
        },
        {
            "start": 931448855,
            "stop": 931449127
        },
        {
            "start": 931449129,
            "stop": 931449130
        }
    ]
}