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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 100,
    "results": [
        {
            "start": 817813556,
            "stop": 817813602
        },
        {
            "start": 817813605,
            "stop": 817813611
        },
        {
            "start": 817813614,
            "stop": 817813620
        },
        {
            "start": 817813623,
            "stop": 817813626
        },
        {
            "start": 817813630,
            "stop": 817813632
        },
        {
            "start": 817813635,
            "stop": 817813646
        },
        {
            "start": 817813650,
            "stop": 817813718
        },
        {
            "start": 817813721,
            "stop": 817813875
        },
        {
            "start": 817813879,
            "stop": 817813921
        },
        {
            "start": 817813925,
            "stop": 817813969
        },
        {
            "start": 817813972,
            "stop": 817813994
        },
        {
            "start": 817813997,
            "stop": 817814025
        },
        {
            "start": 817814032,
            "stop": 817814058
        },
        {
            "start": 817814061,
            "stop": 817814176
        },
        {
            "start": 817814179,
            "stop": 817814307
        },
        {
            "start": 817814316,
            "stop": 817814341
        },
        {
            "start": 817814346,
            "stop": 817814351
        },
        {
            "start": 817814361,
            "stop": 817814377
        },
        {
            "start": 817814386,
            "stop": 817814400
        },
        {
            "start": 817814580,
            "stop": 817814602
        }
    ]
}