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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2E/segments?format=api&page=100",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2E/segments?format=api&page=98",
    "results_count": 126096,
    "results_per_page": 20,
    "num_pages": 6305,
    "page_number": 99,
    "results": [
        {
            "start": 818054343,
            "stop": 818054348
        },
        {
            "start": 818054351,
            "stop": 818054362
        },
        {
            "start": 818054365,
            "stop": 818054370
        },
        {
            "start": 818054374,
            "stop": 818054387
        },
        {
            "start": 818054390,
            "stop": 818054393
        },
        {
            "start": 818054404,
            "stop": 818054407
        },
        {
            "start": 818054412,
            "stop": 818054427
        },
        {
            "start": 818054430,
            "stop": 818054434
        },
        {
            "start": 818054437,
            "stop": 818054438
        },
        {
            "start": 818054446,
            "stop": 818054450
        },
        {
            "start": 818054454,
            "stop": 818054463
        },
        {
            "start": 818054468,
            "stop": 818054474
        },
        {
            "start": 818059500,
            "stop": 818059503
        },
        {
            "start": 818059509,
            "stop": 818059517
        },
        {
            "start": 818059525,
            "stop": 818059537
        },
        {
            "start": 818059540,
            "stop": 818059557
        },
        {
            "start": 818059560,
            "stop": 818059567
        },
        {
            "start": 818059570,
            "stop": 818059573
        },
        {
            "start": 818059576,
            "stop": 818059578
        },
        {
            "start": 818059581,
            "stop": 818059589
        }
    ]
}