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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=4002",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=4000",
    "results_count": 81402,
    "results_per_page": 20,
    "num_pages": 4071,
    "page_number": 4001,
    "results": [
        {
            "start": 874677346,
            "stop": 874677348
        },
        {
            "start": 874677351,
            "stop": 874677381
        },
        {
            "start": 874677385,
            "stop": 874677451
        },
        {
            "start": 874677452,
            "stop": 874677537
        },
        {
            "start": 874677538,
            "stop": 874678145
        },
        {
            "start": 874678146,
            "stop": 874678531
        },
        {
            "start": 874678532,
            "stop": 874678617
        },
        {
            "start": 874678618,
            "stop": 874678720
        },
        {
            "start": 874678723,
            "stop": 874678929
        },
        {
            "start": 874678930,
            "stop": 874678966
        },
        {
            "start": 874678967,
            "stop": 874678968
        },
        {
            "start": 874678971,
            "stop": 874678981
        },
        {
            "start": 874678982,
            "stop": 874679025
        },
        {
            "start": 874679026,
            "stop": 874679173
        },
        {
            "start": 874679174,
            "stop": 874679277
        },
        {
            "start": 874679278,
            "stop": 874679371
        },
        {
            "start": 874679372,
            "stop": 874679738
        },
        {
            "start": 874679739,
            "stop": 874680893
        },
        {
            "start": 874680894,
            "stop": 874680911
        },
        {
            "start": 874680912,
            "stop": 874681623
        }
    ]
}