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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10022",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10020",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10021,
    "results": [
        {
            "start": 872379926,
            "stop": 872380013
        },
        {
            "start": 872380063,
            "stop": 872380523
        },
        {
            "start": 872380559,
            "stop": 872380682
        },
        {
            "start": 872380719,
            "stop": 872380867
        },
        {
            "start": 872380907,
            "stop": 872381287
        },
        {
            "start": 872381323,
            "stop": 872381341
        },
        {
            "start": 872381421,
            "stop": 872381525
        },
        {
            "start": 872381561,
            "stop": 872381800
        },
        {
            "start": 872381836,
            "stop": 872381984
        },
        {
            "start": 872382020,
            "stop": 872382274
        },
        {
            "start": 872382311,
            "stop": 872382836
        },
        {
            "start": 872382875,
            "stop": 872382927
        },
        {
            "start": 872382963,
            "stop": 872383147
        },
        {
            "start": 872383183,
            "stop": 872383341
        },
        {
            "start": 872383377,
            "stop": 872383871
        },
        {
            "start": 872383888,
            "stop": 872384594
        },
        {
            "start": 872384633,
            "stop": 872384688
        },
        {
            "start": 872384724,
            "stop": 872384749
        },
        {
            "start": 872384946,
            "stop": 872384959
        },
        {
            "start": 872385016,
            "stop": 872385039
        }
    ]
}