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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=149",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 150,
    "results": [
        {
            "start": 931595048,
            "stop": 931595049
        },
        {
            "start": 931595052,
            "stop": 931595068
        },
        {
            "start": 931595070,
            "stop": 931595086
        },
        {
            "start": 931595088,
            "stop": 931595106
        },
        {
            "start": 931595109,
            "stop": 931595121
        },
        {
            "start": 931595124,
            "stop": 931595142
        },
        {
            "start": 931595145,
            "stop": 931595175
        },
        {
            "start": 931595178,
            "stop": 931595208
        },
        {
            "start": 931595213,
            "stop": 931595224
        },
        {
            "start": 931595228,
            "stop": 931595246
        },
        {
            "start": 931595249,
            "stop": 931595252
        },
        {
            "start": 931595256,
            "stop": 931595268
        },
        {
            "start": 931595279,
            "stop": 931595323
        },
        {
            "start": 931595326,
            "stop": 931595337
        },
        {
            "start": 931595341,
            "stop": 931595343
        },
        {
            "start": 931595346,
            "stop": 931595348
        },
        {
            "start": 931595351,
            "stop": 931595353
        },
        {
            "start": 931595356,
            "stop": 931595365
        },
        {
            "start": 931595368,
            "stop": 931595377
        },
        {
            "start": 931595380,
            "stop": 931595383
        }
    ]
}