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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=31",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=29",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 30,
    "results": [
        {
            "start": 1126350305,
            "stop": 1126350495
        },
        {
            "start": 1126350496,
            "stop": 1126350889
        },
        {
            "start": 1126350890,
            "stop": 1126350986
        },
        {
            "start": 1126350987,
            "stop": 1126351090
        },
        {
            "start": 1126351091,
            "stop": 1126351197
        },
        {
            "start": 1126351198,
            "stop": 1126351327
        },
        {
            "start": 1126351328,
            "stop": 1126351768
        },
        {
            "start": 1126351769,
            "stop": 1126351864
        },
        {
            "start": 1126351865,
            "stop": 1126352024
        },
        {
            "start": 1126352026,
            "stop": 1126352389
        },
        {
            "start": 1126352390,
            "stop": 1126352498
        },
        {
            "start": 1126352499,
            "stop": 1126352613
        },
        {
            "start": 1126352614,
            "stop": 1126352707
        },
        {
            "start": 1126352708,
            "stop": 1126352786
        },
        {
            "start": 1126352787,
            "stop": 1126352829
        },
        {
            "start": 1126352830,
            "stop": 1126353272
        },
        {
            "start": 1126353273,
            "stop": 1126353368
        },
        {
            "start": 1126353369,
            "stop": 1126353539
        },
        {
            "start": 1126353540,
            "stop": 1126353566
        },
        {
            "start": 1126353567,
            "stop": 1126353877
        }
    ]
}