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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=100",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 101,
    "results": [
        {
            "start": 1126583374,
            "stop": 1126583696
        },
        {
            "start": 1126583698,
            "stop": 1126584029
        },
        {
            "start": 1126584030,
            "stop": 1126584120
        },
        {
            "start": 1126584124,
            "stop": 1126584275
        },
        {
            "start": 1126584277,
            "stop": 1126584354
        },
        {
            "start": 1126584355,
            "stop": 1126584381
        },
        {
            "start": 1126584383,
            "stop": 1126584390
        },
        {
            "start": 1126584392,
            "stop": 1126584422
        },
        {
            "start": 1126584424,
            "stop": 1126584490
        },
        {
            "start": 1126584492,
            "stop": 1126584566
        },
        {
            "start": 1126584568,
            "stop": 1126584576
        },
        {
            "start": 1126584578,
            "stop": 1126584693
        },
        {
            "start": 1126584694,
            "stop": 1126584775
        },
        {
            "start": 1126584776,
            "stop": 1126585038
        },
        {
            "start": 1126585040,
            "stop": 1126585102
        },
        {
            "start": 1126585104,
            "stop": 1126585407
        },
        {
            "start": 1126585409,
            "stop": 1126585680
        },
        {
            "start": 1126585686,
            "stop": 1126585748
        },
        {
            "start": 1126585750,
            "stop": 1126586039
        },
        {
            "start": 1126586040,
            "stop": 1126586336
        }
    ]
}