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=50
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=51",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=49",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 50,
    "results": [
        {
            "start": 1126329326,
            "stop": 1126329334
        },
        {
            "start": 1126329336,
            "stop": 1126329342
        },
        {
            "start": 1126329344,
            "stop": 1126329353
        },
        {
            "start": 1126329354,
            "stop": 1126329355
        },
        {
            "start": 1126329357,
            "stop": 1126329361
        },
        {
            "start": 1126329364,
            "stop": 1126329365
        },
        {
            "start": 1126329367,
            "stop": 1126329411
        },
        {
            "start": 1126329413,
            "stop": 1126329523
        },
        {
            "start": 1126329524,
            "stop": 1126329690
        },
        {
            "start": 1126329691,
            "stop": 1126329731
        },
        {
            "start": 1126329732,
            "stop": 1126329783
        },
        {
            "start": 1126329785,
            "stop": 1126329856
        },
        {
            "start": 1126329857,
            "stop": 1126329860
        },
        {
            "start": 1126329862,
            "stop": 1126330012
        },
        {
            "start": 1126330013,
            "stop": 1126330109
        },
        {
            "start": 1126330110,
            "stop": 1126330347
        },
        {
            "start": 1126330348,
            "stop": 1126330422
        },
        {
            "start": 1126330423,
            "stop": 1126330583
        },
        {
            "start": 1126330584,
            "stop": 1126330605
        },
        {
            "start": 1126330606,
            "stop": 1126330637
        }
    ]
}