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=10029
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=10030",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10028",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10029,
    "results": [
        {
            "start": 872473717,
            "stop": 872474062
        },
        {
            "start": 872474098,
            "stop": 872474142
        },
        {
            "start": 872474190,
            "stop": 872474228
        },
        {
            "start": 872474270,
            "stop": 872474472
        },
        {
            "start": 872474522,
            "stop": 872474533
        },
        {
            "start": 872474584,
            "stop": 872474681
        },
        {
            "start": 872474719,
            "stop": 872474778
        },
        {
            "start": 872474915,
            "stop": 872474917
        },
        {
            "start": 872475061,
            "stop": 872475068
        },
        {
            "start": 872475195,
            "stop": 872475199
        },
        {
            "start": 872475570,
            "stop": 872475591
        },
        {
            "start": 872475743,
            "stop": 872475847
        },
        {
            "start": 872475883,
            "stop": 872475899
        },
        {
            "start": 872475935,
            "stop": 872475950
        },
        {
            "start": 872475999,
            "stop": 872476081
        },
        {
            "start": 872476157,
            "stop": 872476765
        },
        {
            "start": 872476801,
            "stop": 872477050
        },
        {
            "start": 872477086,
            "stop": 872477483
        },
        {
            "start": 872477519,
            "stop": 872477523
        },
        {
            "start": 872477559,
            "stop": 872477561
        }
    ]
}