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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=17",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=15",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 16,
    "results": [
        {
            "start": 1126307376,
            "stop": 1126307555
        },
        {
            "start": 1126307556,
            "stop": 1126307922
        },
        {
            "start": 1126307923,
            "stop": 1126308455
        },
        {
            "start": 1126308456,
            "stop": 1126308624
        },
        {
            "start": 1126308625,
            "stop": 1126308691
        },
        {
            "start": 1126308692,
            "stop": 1126308880
        },
        {
            "start": 1126308881,
            "stop": 1126309060
        },
        {
            "start": 1126309061,
            "stop": 1126309168
        },
        {
            "start": 1126309169,
            "stop": 1126309260
        },
        {
            "start": 1126309261,
            "stop": 1126309378
        },
        {
            "start": 1126309379,
            "stop": 1126309493
        },
        {
            "start": 1126309494,
            "stop": 1126309589
        },
        {
            "start": 1126309590,
            "stop": 1126309714
        },
        {
            "start": 1126309715,
            "stop": 1126309946
        },
        {
            "start": 1126309949,
            "stop": 1126310433
        },
        {
            "start": 1126310434,
            "stop": 1126310558
        },
        {
            "start": 1126310559,
            "stop": 1126310653
        },
        {
            "start": 1126310654,
            "stop": 1126310770
        },
        {
            "start": 1126310771,
            "stop": 1126310889
        },
        {
            "start": 1126310890,
            "stop": 1126310992
        }
    ]
}