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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=249",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 250,
    "results": [
        {
            "start": 838593514,
            "stop": 838599179
        },
        {
            "start": 838599180,
            "stop": 838600891
        },
        {
            "start": 838603970,
            "stop": 838605149
        },
        {
            "start": 838605765,
            "stop": 838607755
        },
        {
            "start": 838608792,
            "stop": 838609651
        },
        {
            "start": 838610527,
            "stop": 838610786
        },
        {
            "start": 838612496,
            "stop": 838615029
        },
        {
            "start": 838616951,
            "stop": 838617011
        },
        {
            "start": 838617013,
            "stop": 838617899
        },
        {
            "start": 838617901,
            "stop": 838618479
        },
        {
            "start": 838619199,
            "stop": 838619227
        },
        {
            "start": 838619229,
            "stop": 838619256
        },
        {
            "start": 838619257,
            "stop": 838619258
        },
        {
            "start": 838619260,
            "stop": 838619265
        },
        {
            "start": 838619267,
            "stop": 838620540
        },
        {
            "start": 838621609,
            "stop": 838629413
        },
        {
            "start": 838631318,
            "stop": 838631861
        },
        {
            "start": 838632793,
            "stop": 838633059
        },
        {
            "start": 838633060,
            "stop": 838633474
        },
        {
            "start": 838633476,
            "stop": 838633643
        }
    ]
}