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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=9002",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=9000",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 9001,
    "results": [
        {
            "start": 873950289,
            "stop": 873950518
        },
        {
            "start": 873950537,
            "stop": 873950946
        },
        {
            "start": 873950965,
            "stop": 873950998
        },
        {
            "start": 873951017,
            "stop": 873951020
        },
        {
            "start": 873951037,
            "stop": 873951186
        },
        {
            "start": 873951205,
            "stop": 873951725
        },
        {
            "start": 873951744,
            "stop": 873952087
        },
        {
            "start": 873952107,
            "stop": 873952222
        },
        {
            "start": 873952239,
            "stop": 873952602
        },
        {
            "start": 873952621,
            "stop": 873952756
        },
        {
            "start": 873952775,
            "stop": 873952876
        },
        {
            "start": 873952895,
            "stop": 873953322
        },
        {
            "start": 873953341,
            "stop": 873953432
        },
        {
            "start": 873953449,
            "stop": 873953498
        },
        {
            "start": 873953515,
            "stop": 873953581
        },
        {
            "start": 873953598,
            "stop": 873953765
        },
        {
            "start": 873953785,
            "stop": 873954164
        },
        {
            "start": 873954183,
            "stop": 873954735
        },
        {
            "start": 873954752,
            "stop": 873955728
        },
        {
            "start": 873955745,
            "stop": 873956749
        }
    ]
}