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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT1/segments?format=api&page=41",
    "results_count": 5354,
    "results_per_page": 20,
    "num_pages": 268,
    "page_number": 42,
    "results": [
        {
            "start": 821076342,
            "stop": 821084648
        },
        {
            "start": 821085137,
            "stop": 821088688
        },
        {
            "start": 821089122,
            "stop": 821098607
        },
        {
            "start": 821099007,
            "stop": 821100185
        },
        {
            "start": 821100697,
            "stop": 821103996
        },
        {
            "start": 821106253,
            "stop": 821107491
        },
        {
            "start": 821109537,
            "stop": 821113302
        },
        {
            "start": 821134617,
            "stop": 821136629
        },
        {
            "start": 821137170,
            "stop": 821174513
        },
        {
            "start": 821174711,
            "stop": 821182382
        },
        {
            "start": 821182993,
            "stop": 821183078
        },
        {
            "start": 821183398,
            "stop": 821183687
        },
        {
            "start": 821184087,
            "stop": 821186071
        },
        {
            "start": 821186391,
            "stop": 821208298
        },
        {
            "start": 821208889,
            "stop": 821209446
        },
        {
            "start": 821209846,
            "stop": 821216987
        },
        {
            "start": 821217307,
            "stop": 821217313
        },
        {
            "start": 821217713,
            "stop": 821217823
        },
        {
            "start": 821218510,
            "stop": 821222093
        },
        {
            "start": 821222677,
            "stop": 821222740
        }
    ]
}