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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=254",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 255,
    "results": [
        {
            "start": 933320801,
            "stop": 933321180
        },
        {
            "start": 933321202,
            "stop": 933321598
        },
        {
            "start": 933321603,
            "stop": 933321639
        },
        {
            "start": 933321644,
            "stop": 933321765
        },
        {
            "start": 933321784,
            "stop": 933322530
        },
        {
            "start": 933322531,
            "stop": 933322750
        },
        {
            "start": 933322769,
            "stop": 933322785
        },
        {
            "start": 933322809,
            "stop": 933322877
        },
        {
            "start": 933323503,
            "stop": 933323570
        },
        {
            "start": 933323626,
            "stop": 933323674
        },
        {
            "start": 933323693,
            "stop": 933323721
        },
        {
            "start": 933323740,
            "stop": 933324094
        },
        {
            "start": 933324138,
            "stop": 933324167
        },
        {
            "start": 933324188,
            "stop": 933324423
        },
        {
            "start": 933324441,
            "stop": 933325091
        },
        {
            "start": 933325109,
            "stop": 933325379
        },
        {
            "start": 933325398,
            "stop": 933325480
        },
        {
            "start": 933325499,
            "stop": 933326325
        },
        {
            "start": 933326330,
            "stop": 933326814
        },
        {
            "start": 933326833,
            "stop": 933327166
        }
    ]
}