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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H2L1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H2L1/segments?format=api&page=122",
    "results_count": 21252,
    "results_per_page": 20,
    "num_pages": 1063,
    "page_number": 123,
    "results": [
        {
            "start": 821340192,
            "stop": 821340252
        },
        {
            "start": 821340607,
            "stop": 821340847
        },
        {
            "start": 821341056,
            "stop": 821341626
        },
        {
            "start": 821341797,
            "stop": 821341917
        },
        {
            "start": 821342064,
            "stop": 821342184
        },
        {
            "start": 821342321,
            "stop": 821342381
        },
        {
            "start": 821342536,
            "stop": 821342656
        },
        {
            "start": 821342814,
            "stop": 821343114
        },
        {
            "start": 821343270,
            "stop": 821344110
        },
        {
            "start": 821344284,
            "stop": 821344404
        },
        {
            "start": 821344858,
            "stop": 821344978
        },
        {
            "start": 821345145,
            "stop": 821345205
        },
        {
            "start": 821345421,
            "stop": 821345481
        },
        {
            "start": 821345647,
            "stop": 821345887
        },
        {
            "start": 821346062,
            "stop": 821346392
        },
        {
            "start": 821346952,
            "stop": 821347132
        },
        {
            "start": 821347284,
            "stop": 821347344
        },
        {
            "start": 821347568,
            "stop": 821347688
        },
        {
            "start": 821347875,
            "stop": 821347935
        },
        {
            "start": 821348210,
            "stop": 821348390
        }
    ]
}