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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=4",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=2",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 3,
    "results": [
        {
            "start": 1368430468,
            "stop": 1368433849
        },
        {
            "start": 1368433851,
            "stop": 1368435407
        },
        {
            "start": 1368435408,
            "stop": 1368436239
        },
        {
            "start": 1368449835,
            "stop": 1368451672
        },
        {
            "start": 1368451674,
            "stop": 1368452502
        },
        {
            "start": 1368452504,
            "stop": 1368453837
        },
        {
            "start": 1368453838,
            "stop": 1368455825
        },
        {
            "start": 1368455827,
            "stop": 1368457359
        },
        {
            "start": 1368457360,
            "stop": 1368458064
        },
        {
            "start": 1368458066,
            "stop": 1368459517
        },
        {
            "start": 1368459519,
            "stop": 1368460381
        },
        {
            "start": 1368460383,
            "stop": 1368460501
        },
        {
            "start": 1368547400,
            "stop": 1368547783
        },
        {
            "start": 1368547942,
            "stop": 1368552711
        },
        {
            "start": 1368975618,
            "stop": 1368976096
        },
        {
            "start": 1368976097,
            "stop": 1368976410
        },
        {
            "start": 1368976411,
            "stop": 1368977524
        },
        {
            "start": 1368977525,
            "stop": 1368977653
        },
        {
            "start": 1368977657,
            "stop": 1368978143
        },
        {
            "start": 1368978145,
            "stop": 1368979659
        }
    ]
}