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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=299",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 300,
    "results": [
        {
            "start": 858173537,
            "stop": 858173556
        },
        {
            "start": 858173803,
            "stop": 858207230
        },
        {
            "start": 858210223,
            "stop": 858219697
        },
        {
            "start": 858225464,
            "stop": 858232285
        },
        {
            "start": 858232529,
            "stop": 858239336
        },
        {
            "start": 858240804,
            "stop": 858255718
        },
        {
            "start": 858256913,
            "stop": 858276347
        },
        {
            "start": 858276520,
            "stop": 858321102
        },
        {
            "start": 858322732,
            "stop": 858339982
        },
        {
            "start": 858341840,
            "stop": 858341993
        },
        {
            "start": 858343031,
            "stop": 858354103
        },
        {
            "start": 858355347,
            "stop": 858364890
        },
        {
            "start": 858366287,
            "stop": 858366714
        },
        {
            "start": 858366842,
            "stop": 858375651
        },
        {
            "start": 858376874,
            "stop": 858407767
        },
        {
            "start": 858408621,
            "stop": 858432803
        },
        {
            "start": 858447566,
            "stop": 858457805
        },
        {
            "start": 858459340,
            "stop": 858459811
        },
        {
            "start": 858460711,
            "stop": 858463878
        },
        {
            "start": 858464312,
            "stop": 858464383
        }
    ]
}