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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT2/segments?format=api&page=11",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT2/segments?format=api&page=9",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 10,
    "results": [
        {
            "start": 1369441926,
            "stop": 1369442120
        },
        {
            "start": 1369442125,
            "stop": 1369442210
        },
        {
            "start": 1369442215,
            "stop": 1369442267
        },
        {
            "start": 1369442272,
            "stop": 1369442391
        },
        {
            "start": 1369442396,
            "stop": 1369442419
        },
        {
            "start": 1369442424,
            "stop": 1369442435
        },
        {
            "start": 1369442440,
            "stop": 1369442509
        },
        {
            "start": 1369442519,
            "stop": 1369442537
        },
        {
            "start": 1369442542,
            "stop": 1369442555
        },
        {
            "start": 1369442560,
            "stop": 1369442575
        },
        {
            "start": 1369442580,
            "stop": 1369442594
        },
        {
            "start": 1369442599,
            "stop": 1369442622
        },
        {
            "start": 1369442627,
            "stop": 1369442690
        },
        {
            "start": 1369442694,
            "stop": 1369442717
        },
        {
            "start": 1369442722,
            "stop": 1369442772
        },
        {
            "start": 1369442777,
            "stop": 1369442790
        },
        {
            "start": 1369442795,
            "stop": 1369442806
        },
        {
            "start": 1369442811,
            "stop": 1369442825
        },
        {
            "start": 1369442830,
            "stop": 1369442855
        },
        {
            "start": 1369442860,
            "stop": 1369442865
        }
    ]
}