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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=99",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 100,
    "results": [
        {
            "start": 828797127,
            "stop": 828798856
        },
        {
            "start": 828798966,
            "stop": 828799120
        },
        {
            "start": 828799740,
            "stop": 828800614
        },
        {
            "start": 828801482,
            "stop": 828801637
        },
        {
            "start": 828802109,
            "stop": 828802478
        },
        {
            "start": 828802588,
            "stop": 828802626
        },
        {
            "start": 828833440,
            "stop": 828890071
        },
        {
            "start": 828890147,
            "stop": 828891247
        },
        {
            "start": 828899551,
            "stop": 828905970
        },
        {
            "start": 828906122,
            "stop": 828910550
        },
        {
            "start": 828910880,
            "stop": 828910928
        },
        {
            "start": 828929996,
            "stop": 828968224
        },
        {
            "start": 828968334,
            "stop": 828968677
        },
        {
            "start": 828969898,
            "stop": 828970125
        },
        {
            "start": 828970454,
            "stop": 828978561
        },
        {
            "start": 829027287,
            "stop": 829066297
        },
        {
            "start": 829066597,
            "stop": 829066924
        },
        {
            "start": 829115649,
            "stop": 829117193
        },
        {
            "start": 829121749,
            "stop": 829134560
        },
        {
            "start": 829135034,
            "stop": 829145150
        }
    ]
}