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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT2/segments?format=api&page=501",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_BURST_CAT2/segments?format=api&page=499",
    "results_count": 11548,
    "results_per_page": 20,
    "num_pages": 578,
    "page_number": 500,
    "results": [
        {
            "start": 1184577129,
            "stop": 1184577284
        },
        {
            "start": 1184577286,
            "stop": 1184577290
        },
        {
            "start": 1184577298,
            "stop": 1184577302
        },
        {
            "start": 1184577310,
            "stop": 1184577314
        },
        {
            "start": 1184577316,
            "stop": 1184577355
        },
        {
            "start": 1184577368,
            "stop": 1184577369
        },
        {
            "start": 1184581367,
            "stop": 1184583202
        },
        {
            "start": 1184583205,
            "stop": 1184583509
        },
        {
            "start": 1184583511,
            "stop": 1184583512
        },
        {
            "start": 1184583514,
            "stop": 1184583519
        },
        {
            "start": 1184583525,
            "stop": 1184583526
        },
        {
            "start": 1184583528,
            "stop": 1184583529
        },
        {
            "start": 1184583532,
            "stop": 1184583535
        },
        {
            "start": 1184583542,
            "stop": 1184583692
        },
        {
            "start": 1184583694,
            "stop": 1184584372
        },
        {
            "start": 1184584375,
            "stop": 1184584602
        },
        {
            "start": 1184584605,
            "stop": 1184584608
        },
        {
            "start": 1184584619,
            "stop": 1184584625
        },
        {
            "start": 1184584628,
            "stop": 1184584873
        },
        {
            "start": 1184584885,
            "stop": 1184584899
        }
    ]
}