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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=26",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=24",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 25,
    "results": [
        {
            "start": 1126336387,
            "stop": 1126336479
        },
        {
            "start": 1126336480,
            "stop": 1126336873
        },
        {
            "start": 1126336874,
            "stop": 1126336972
        },
        {
            "start": 1126336973,
            "stop": 1126337076
        },
        {
            "start": 1126337077,
            "stop": 1126337173
        },
        {
            "start": 1126337174,
            "stop": 1126337232
        },
        {
            "start": 1126337234,
            "stop": 1126337325
        },
        {
            "start": 1126337326,
            "stop": 1126337716
        },
        {
            "start": 1126337718,
            "stop": 1126337815
        },
        {
            "start": 1126337817,
            "stop": 1126337981
        },
        {
            "start": 1126337983,
            "stop": 1126338000
        },
        {
            "start": 1126338002,
            "stop": 1126338359
        },
        {
            "start": 1126338361,
            "stop": 1126338370
        },
        {
            "start": 1126338372,
            "stop": 1126338478
        },
        {
            "start": 1126338479,
            "stop": 1126338552
        },
        {
            "start": 1126338553,
            "stop": 1126338570
        },
        {
            "start": 1126338572,
            "stop": 1126338699
        },
        {
            "start": 1126338700,
            "stop": 1126338718
        },
        {
            "start": 1126338720,
            "stop": 1126339024
        },
        {
            "start": 1126339025,
            "stop": 1126339119
        }
    ]
}