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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=402",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=400",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 401,
    "results": [
        {
            "start": 851877791,
            "stop": 851878866
        },
        {
            "start": 851885195,
            "stop": 851886401
        },
        {
            "start": 851886403,
            "stop": 851888560
        },
        {
            "start": 851890706,
            "stop": 851891238
        },
        {
            "start": 851891240,
            "stop": 851892349
        },
        {
            "start": 851895774,
            "stop": 851899176
        },
        {
            "start": 851899178,
            "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": 851954230
        },
        {
            "start": 851955053,
            "stop": 851957554
        },
        {
            "start": 851957801,
            "stop": 851973874
        },
        {
            "start": 851974197,
            "stop": 851989853
        },
        {
            "start": 851990294,
            "stop": 851993280
        },
        {
            "start": 851993438,
            "stop": 851993971
        },
        {
            "start": 851994069,
            "stop": 851994554
        },
        {
            "start": 851994556,
            "stop": 851995023
        }
    ]
}