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/O4b/timelines/L1_CBC_CAT3/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/O4b/timelines/L1_CBC_CAT3/segments?format=api&page=6",
    "previous": "https://gwosc.org/api/v2/runs/O4b/timelines/L1_CBC_CAT3/segments?format=api&page=4",
    "results_count": 1162,
    "results_per_page": 20,
    "num_pages": 59,
    "page_number": 5,
    "results": [
        {
            "start": 1398453618,
            "stop": 1398453860
        },
        {
            "start": 1398457566,
            "stop": 1398472835
        },
        {
            "start": 1398475678,
            "stop": 1398520939
        },
        {
            "start": 1398543456,
            "stop": 1398543970
        },
        {
            "start": 1398545737,
            "stop": 1398547056
        },
        {
            "start": 1398547137,
            "stop": 1398612618
        },
        {
            "start": 1398625448,
            "stop": 1398670402
        },
        {
            "start": 1398682603,
            "stop": 1398700988
        },
        {
            "start": 1398711806,
            "stop": 1398741892
        },
        {
            "start": 1398744582,
            "stop": 1398970581
        },
        {
            "start": 1398982198,
            "stop": 1399031198
        },
        {
            "start": 1399036265,
            "stop": 1399044696
        },
        {
            "start": 1399051041,
            "stop": 1399051112
        },
        {
            "start": 1399057100,
            "stop": 1399063821
        },
        {
            "start": 1399064131,
            "stop": 1399068293
        },
        {
            "start": 1399071177,
            "stop": 1399081576
        },
        {
            "start": 1399082437,
            "stop": 1399088079
        },
        {
            "start": 1399088346,
            "stop": 1399088896
        },
        {
            "start": 1399089153,
            "stop": 1399090630
        },
        {
            "start": 1399090893,
            "stop": 1399091270
        }
    ]
}