Return the segments for a given timeline for a run.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • compact: Return a list of segment [start, stop] list.
GET /api/v2/runs/O1/timelines/L1_BURST_CAT2/segments?format=api&page=42
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT2/segments?format=api&page=41",
    "results_count": 830,
    "results_per_page": 20,
    "num_pages": 42,
    "page_number": 42,
    "results": [
        {
            "start": 1136954885,
            "stop": 1136956026
        },
        {
            "start": 1137006321,
            "stop": 1137009449
        },
        {
            "start": 1137009884,
            "stop": 1137021756
        },
        {
            "start": 1137022361,
            "stop": 1137026159
        },
        {
            "start": 1137207120,
            "stop": 1137215120
        },
        {
            "start": 1137215656,
            "stop": 1137218920
        },
        {
            "start": 1137218928,
            "stop": 1137242239
        },
        {
            "start": 1137242241,
            "stop": 1137245022
        },
        {
            "start": 1137245024,
            "stop": 1137248329
        },
        {
            "start": 1137248762,
            "stop": 1137250767
        }
    ]
}