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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=7",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/H1_BURST_CAT3/segments?format=api&page=5",
    "results_count": 4426,
    "results_per_page": 20,
    "num_pages": 222,
    "page_number": 6,
    "results": [
        {
            "start": 1369287516,
            "stop": 1369288282
        },
        {
            "start": 1369288287,
            "stop": 1369288330
        },
        {
            "start": 1369288335,
            "stop": 1369288515
        },
        {
            "start": 1369288520,
            "stop": 1369288901
        },
        {
            "start": 1369288906,
            "stop": 1369289684
        },
        {
            "start": 1369289689,
            "stop": 1369289818
        },
        {
            "start": 1369289823,
            "stop": 1369290085
        },
        {
            "start": 1369290090,
            "stop": 1369290106
        },
        {
            "start": 1369290111,
            "stop": 1369290161
        },
        {
            "start": 1369290166,
            "stop": 1369290280
        },
        {
            "start": 1369290285,
            "stop": 1369290324
        },
        {
            "start": 1369290329,
            "stop": 1369290448
        },
        {
            "start": 1369290453,
            "stop": 1369290519
        },
        {
            "start": 1369290524,
            "stop": 1369290690
        },
        {
            "start": 1369290694,
            "stop": 1369290745
        },
        {
            "start": 1369290750,
            "stop": 1369290839
        },
        {
            "start": 1369290844,
            "stop": 1369290875
        },
        {
            "start": 1369290885,
            "stop": 1369290889
        },
        {
            "start": 1369290894,
            "stop": 1369290946
        },
        {
            "start": 1369290951,
            "stop": 1369291074
        }
    ]
}