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=200
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=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=199",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 200,
    "results": [
        {
            "start": 833559205,
            "stop": 833566255
        },
        {
            "start": 833567330,
            "stop": 833568943
        },
        {
            "start": 833569448,
            "stop": 833573578
        },
        {
            "start": 833575494,
            "stop": 833575511
        },
        {
            "start": 833575599,
            "stop": 833588896
        },
        {
            "start": 833589083,
            "stop": 833589941
        },
        {
            "start": 833590070,
            "stop": 833590143
        },
        {
            "start": 833590456,
            "stop": 833590704
        },
        {
            "start": 833591017,
            "stop": 833591081
        },
        {
            "start": 833591464,
            "stop": 833604079
        },
        {
            "start": 833604081,
            "stop": 833612425
        },
        {
            "start": 833613201,
            "stop": 833628255
        },
        {
            "start": 833628875,
            "stop": 833629498
        },
        {
            "start": 833629581,
            "stop": 833631227
        },
        {
            "start": 833632367,
            "stop": 833639168
        },
        {
            "start": 833639357,
            "stop": 833639817
        },
        {
            "start": 833672844,
            "stop": 833673098
        },
        {
            "start": 833673099,
            "stop": 833675164
        },
        {
            "start": 833676035,
            "stop": 833704112
        },
        {
            "start": 833705195,
            "stop": 833715027
        }
    ]
}