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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=302",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=300",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 301,
    "results": [
        {
            "start": 852258530,
            "stop": 852258546
        },
        {
            "start": 852258550,
            "stop": 852258561
        },
        {
            "start": 852258565,
            "stop": 852258696
        },
        {
            "start": 852258701,
            "stop": 852262464
        },
        {
            "start": 852262467,
            "stop": 852262666
        },
        {
            "start": 852262669,
            "stop": 852262699
        },
        {
            "start": 852262703,
            "stop": 852262724
        },
        {
            "start": 852262728,
            "stop": 852262734
        },
        {
            "start": 852262738,
            "stop": 852262848
        },
        {
            "start": 852262852,
            "stop": 852262939
        },
        {
            "start": 852262943,
            "stop": 852262982
        },
        {
            "start": 852262991,
            "stop": 852263055
        },
        {
            "start": 852263064,
            "stop": 852263108
        },
        {
            "start": 852263112,
            "stop": 852263156
        },
        {
            "start": 852263160,
            "stop": 852263257
        },
        {
            "start": 852263261,
            "stop": 852263277
        },
        {
            "start": 852263280,
            "stop": 852263559
        },
        {
            "start": 852263563,
            "stop": 852263631
        },
        {
            "start": 852263634,
            "stop": 852263799
        },
        {
            "start": 852263812,
            "stop": 852264333
        }
    ]
}