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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=50",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=48",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 49,
    "results": [
        {
            "start": 822263796,
            "stop": 822266757
        },
        {
            "start": 822268196,
            "stop": 822268786
        },
        {
            "start": 822270644,
            "stop": 822270988
        },
        {
            "start": 822271416,
            "stop": 822282617
        },
        {
            "start": 822283455,
            "stop": 822290414
        },
        {
            "start": 822292223,
            "stop": 822294827
        },
        {
            "start": 822294912,
            "stop": 822315390
        },
        {
            "start": 822315951,
            "stop": 822316224
        },
        {
            "start": 822316620,
            "stop": 822318360
        },
        {
            "start": 822318478,
            "stop": 822320236
        },
        {
            "start": 822320320,
            "stop": 822322207
        },
        {
            "start": 822322350,
            "stop": 822322982
        },
        {
            "start": 822323113,
            "stop": 822323669
        },
        {
            "start": 822323770,
            "stop": 822323819
        },
        {
            "start": 822325319,
            "stop": 822325983
        },
        {
            "start": 822326100,
            "stop": 822327014
        },
        {
            "start": 822327160,
            "stop": 822327321
        },
        {
            "start": 822327580,
            "stop": 822327661
        },
        {
            "start": 822329548,
            "stop": 822329708
        },
        {
            "start": 822329823,
            "stop": 822329879
        }
    ]
}