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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT2/segments?format=api&page=255",
    "results_count": 9439,
    "results_per_page": 20,
    "num_pages": 472,
    "page_number": 256,
    "results": [
        {
            "start": 854427844,
            "stop": 854476628
        },
        {
            "start": 854477049,
            "stop": 854478496
        },
        {
            "start": 854479713,
            "stop": 854481953
        },
        {
            "start": 854483245,
            "stop": 854483266
        },
        {
            "start": 854483566,
            "stop": 854504456
        },
        {
            "start": 854505238,
            "stop": 854584195
        },
        {
            "start": 854584559,
            "stop": 854585450
        },
        {
            "start": 854586144,
            "stop": 854586682
        },
        {
            "start": 854586697,
            "stop": 854617843
        },
        {
            "start": 854620245,
            "stop": 854653387
        },
        {
            "start": 854653406,
            "stop": 854658316
        },
        {
            "start": 854667568,
            "stop": 854673126
        },
        {
            "start": 854673237,
            "stop": 854705122
        },
        {
            "start": 854706904,
            "stop": 854744106
        },
        {
            "start": 854744252,
            "stop": 854751210
        },
        {
            "start": 854752650,
            "stop": 854758488
        },
        {
            "start": 854758695,
            "stop": 854770229
        },
        {
            "start": 854770339,
            "stop": 854770397
        },
        {
            "start": 854770697,
            "stop": 854794321
        },
        {
            "start": 854794633,
            "stop": 854811668
        }
    ]
}