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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=206",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_DATA/segments?format=api&page=204",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 205,
    "results": [
        {
            "start": 851858066,
            "stop": 851860425
        },
        {
            "start": 851860618,
            "stop": 851861774
        },
        {
            "start": 851863604,
            "stop": 851868278
        },
        {
            "start": 851869225,
            "stop": 851871593
        },
        {
            "start": 851877791,
            "stop": 851878888
        },
        {
            "start": 851885195,
            "stop": 851888590
        },
        {
            "start": 851890706,
            "stop": 851892378
        },
        {
            "start": 851895774,
            "stop": 851904596
        },
        {
            "start": 851905223,
            "stop": 851907863
        },
        {
            "start": 851908208,
            "stop": 851924937
        },
        {
            "start": 851925165,
            "stop": 851928989
        },
        {
            "start": 851930139,
            "stop": 851943417
        },
        {
            "start": 851943692,
            "stop": 851951060
        },
        {
            "start": 851951958,
            "stop": 851954260
        },
        {
            "start": 851955053,
            "stop": 851957554
        },
        {
            "start": 851957801,
            "stop": 851973874
        },
        {
            "start": 851974197,
            "stop": 851989853
        },
        {
            "start": 851990294,
            "stop": 851993280
        },
        {
            "start": 851993438,
            "stop": 851993971
        },
        {
            "start": 851994069,
            "stop": 851995023
        }
    ]
}