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=15
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=16",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=14",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 15,
    "results": [
        {
            "start": 1126301900,
            "stop": 1126301916
        },
        {
            "start": 1126301917,
            "stop": 1126302050
        },
        {
            "start": 1126302274,
            "stop": 1126302670
        },
        {
            "start": 1126302672,
            "stop": 1126302912
        },
        {
            "start": 1126302913,
            "stop": 1126303185
        },
        {
            "start": 1126303186,
            "stop": 1126303572
        },
        {
            "start": 1126303573,
            "stop": 1126303834
        },
        {
            "start": 1126303835,
            "stop": 1126304191
        },
        {
            "start": 1126304192,
            "stop": 1126304365
        },
        {
            "start": 1126304665,
            "stop": 1126304821
        },
        {
            "start": 1126304823,
            "stop": 1126305090
        },
        {
            "start": 1126305091,
            "stop": 1126305427
        },
        {
            "start": 1126305428,
            "stop": 1126305720
        },
        {
            "start": 1126305721,
            "stop": 1126305790
        },
        {
            "start": 1126305792,
            "stop": 1126305920
        },
        {
            "start": 1126305921,
            "stop": 1126306255
        },
        {
            "start": 1126306256,
            "stop": 1126306550
        },
        {
            "start": 1126306551,
            "stop": 1126306852
        },
        {
            "start": 1126306853,
            "stop": 1126307032
        },
        {
            "start": 1126307033,
            "stop": 1126307374
        }
    ]
}