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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=100",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 101,
    "results": [
        {
            "start": 818059868,
            "stop": 818059874
        },
        {
            "start": 818059877,
            "stop": 818059904
        },
        {
            "start": 818059907,
            "stop": 818059922
        },
        {
            "start": 818059927,
            "stop": 818059928
        },
        {
            "start": 818059932,
            "stop": 818059936
        },
        {
            "start": 818059939,
            "stop": 818059950
        },
        {
            "start": 818059956,
            "stop": 818059960
        },
        {
            "start": 818059963,
            "stop": 818059964
        },
        {
            "start": 818059970,
            "stop": 818059978
        },
        {
            "start": 818059981,
            "stop": 818059991
        },
        {
            "start": 818059994,
            "stop": 818060006
        },
        {
            "start": 818060009,
            "stop": 818060042
        },
        {
            "start": 818060045,
            "stop": 818060047
        },
        {
            "start": 818060050,
            "stop": 818060058
        },
        {
            "start": 818060061,
            "stop": 818060067
        },
        {
            "start": 818060070,
            "stop": 818060071
        },
        {
            "start": 818060074,
            "stop": 818060084
        },
        {
            "start": 818060088,
            "stop": 818060090
        },
        {
            "start": 818060093,
            "stop": 818060098
        },
        {
            "start": 818060101,
            "stop": 818060117
        }
    ]
}