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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2343",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2341",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2342,
    "results": [
        {
            "start": 871852860,
            "stop": 871853580
        },
        {
            "start": 871858697,
            "stop": 871858783
        },
        {
            "start": 871858800,
            "stop": 871859870
        },
        {
            "start": 871859950,
            "stop": 871860390
        },
        {
            "start": 871860510,
            "stop": 871860554
        },
        {
            "start": 871860605,
            "stop": 871861222
        },
        {
            "start": 871861239,
            "stop": 871861305
        },
        {
            "start": 871861322,
            "stop": 871861454
        },
        {
            "start": 871861471,
            "stop": 871862113
        },
        {
            "start": 871862130,
            "stop": 871862559
        },
        {
            "start": 871862576,
            "stop": 871862989
        },
        {
            "start": 871863006,
            "stop": 871863399
        },
        {
            "start": 871863416,
            "stop": 871864032
        },
        {
            "start": 871864049,
            "stop": 871867130
        },
        {
            "start": 871867270,
            "stop": 871867355
        },
        {
            "start": 871867372,
            "stop": 871868510
        },
        {
            "start": 871868590,
            "stop": 871870550
        },
        {
            "start": 871870630,
            "stop": 871871057
        },
        {
            "start": 871871074,
            "stop": 871871666
        },
        {
            "start": 871871683,
            "stop": 871881646
        }
    ]
}