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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=9999",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10000,
    "results": [
        {
            "start": 872201299,
            "stop": 872201481
        },
        {
            "start": 872201498,
            "stop": 872201532
        },
        {
            "start": 872201549,
            "stop": 872201772
        },
        {
            "start": 872201789,
            "stop": 872201814
        },
        {
            "start": 872201841,
            "stop": 872201844
        },
        {
            "start": 872201860,
            "stop": 872201869
        },
        {
            "start": 872202042,
            "stop": 872202052
        },
        {
            "start": 872202086,
            "stop": 872202112
        },
        {
            "start": 872207597,
            "stop": 872207621
        },
        {
            "start": 872207899,
            "stop": 872207914
        },
        {
            "start": 872208090,
            "stop": 872208900
        },
        {
            "start": 872208917,
            "stop": 872208998
        },
        {
            "start": 872209041,
            "stop": 872209598
        },
        {
            "start": 872209634,
            "stop": 872210402
        },
        {
            "start": 872210623,
            "stop": 872210722
        },
        {
            "start": 872210758,
            "stop": 872211078
        },
        {
            "start": 872211114,
            "stop": 872211210
        },
        {
            "start": 872211227,
            "stop": 872211588
        },
        {
            "start": 872211605,
            "stop": 872212357
        },
        {
            "start": 872212393,
            "stop": 872212777
        }
    ]
}