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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=100",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 101,
    "results": [
        {
            "start": 825752342,
            "stop": 825752343
        },
        {
            "start": 825752355,
            "stop": 825752358
        },
        {
            "start": 825752377,
            "stop": 825752379
        },
        {
            "start": 825752385,
            "stop": 825752391
        },
        {
            "start": 825752439,
            "stop": 825752440
        },
        {
            "start": 825752443,
            "stop": 825752445
        },
        {
            "start": 825752472,
            "stop": 825752473
        },
        {
            "start": 825752476,
            "stop": 825752477
        },
        {
            "start": 825752481,
            "stop": 825752485
        },
        {
            "start": 825752490,
            "stop": 825752491
        },
        {
            "start": 825752524,
            "stop": 825752525
        },
        {
            "start": 825752548,
            "stop": 825752549
        },
        {
            "start": 825752552,
            "stop": 825752556
        },
        {
            "start": 825752561,
            "stop": 825752563
        },
        {
            "start": 825752576,
            "stop": 825752577
        },
        {
            "start": 825752589,
            "stop": 825752597
        },
        {
            "start": 825752600,
            "stop": 825752601
        },
        {
            "start": 825752606,
            "stop": 825752608
        },
        {
            "start": 825752626,
            "stop": 825752627
        },
        {
            "start": 825752630,
            "stop": 825752635
        }
    ]
}