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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3002",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3000",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3001,
    "results": [
        {
            "start": 862349280,
            "stop": 862349820
        },
        {
            "start": 862349880,
            "stop": 862350527
        },
        {
            "start": 862350529,
            "stop": 862350555
        },
        {
            "start": 862350705,
            "stop": 862350720
        },
        {
            "start": 862350780,
            "stop": 862351830
        },
        {
            "start": 862352580,
            "stop": 862354405
        },
        {
            "start": 862354410,
            "stop": 862354920
        },
        {
            "start": 862354980,
            "stop": 862355180
        },
        {
            "start": 862355182,
            "stop": 862355760
        },
        {
            "start": 862355820,
            "stop": 862356028
        },
        {
            "start": 862357244,
            "stop": 862369080
        },
        {
            "start": 862369140,
            "stop": 862380830
        },
        {
            "start": 862382740,
            "stop": 862384451
        },
        {
            "start": 862386255,
            "stop": 862387981
        },
        {
            "start": 862387985,
            "stop": 862393560
        },
        {
            "start": 862394400,
            "stop": 862394460
        },
        {
            "start": 862394640,
            "stop": 862394700
        },
        {
            "start": 862394820,
            "stop": 862404200
        },
        {
            "start": 862404562,
            "stop": 862408495
        },
        {
            "start": 862408877,
            "stop": 862409003
        }
    ]
}