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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10122",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10123,
    "results": [
        {
            "start": 873483326,
            "stop": 873483330
        },
        {
            "start": 873483341,
            "stop": 873483408
        },
        {
            "start": 873483420,
            "stop": 873483555
        },
        {
            "start": 873483563,
            "stop": 873483831
        },
        {
            "start": 873483951,
            "stop": 873484010
        },
        {
            "start": 873484017,
            "stop": 873484107
        },
        {
            "start": 873484115,
            "stop": 873484124
        },
        {
            "start": 873484132,
            "stop": 873484185
        },
        {
            "start": 873484194,
            "stop": 873484347
        },
        {
            "start": 873484355,
            "stop": 873484420
        },
        {
            "start": 873484427,
            "stop": 873484929
        },
        {
            "start": 873484936,
            "stop": 873484973
        },
        {
            "start": 873484980,
            "stop": 873485187
        },
        {
            "start": 873485195,
            "stop": 873485430
        },
        {
            "start": 873486270,
            "stop": 873486350
        },
        {
            "start": 873486358,
            "stop": 873486373
        },
        {
            "start": 873486380,
            "stop": 873486388
        },
        {
            "start": 873486508,
            "stop": 873486595
        },
        {
            "start": 873486840,
            "stop": 873486842
        },
        {
            "start": 873487894,
            "stop": 873487926
        }
    ]
}