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/S6/timelines/H1_BURST_CAT4/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/S6/timelines/H1_BURST_CAT4/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT4/segments?format=api&page=255",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 256,
    "results": [
        {
            "start": 931600810,
            "stop": 931600813
        },
        {
            "start": 931600814,
            "stop": 931600815
        },
        {
            "start": 931601175,
            "stop": 931601219
        },
        {
            "start": 931601220,
            "stop": 931601257
        },
        {
            "start": 931601258,
            "stop": 931601289
        },
        {
            "start": 931601291,
            "stop": 931601302
        },
        {
            "start": 931601303,
            "stop": 931601313
        },
        {
            "start": 931601314,
            "stop": 931601323
        },
        {
            "start": 931601324,
            "stop": 931601410
        },
        {
            "start": 931601413,
            "stop": 931601457
        },
        {
            "start": 931601458,
            "stop": 931601477
        },
        {
            "start": 931601478,
            "stop": 931601523
        },
        {
            "start": 931601524,
            "stop": 931601550
        },
        {
            "start": 931601551,
            "stop": 931601605
        },
        {
            "start": 931601606,
            "stop": 931601611
        },
        {
            "start": 931601612,
            "stop": 931601620
        },
        {
            "start": 931601621,
            "stop": 931601662
        },
        {
            "start": 931601665,
            "stop": 931601787
        },
        {
            "start": 931601788,
            "stop": 931601853
        },
        {
            "start": 931601854,
            "stop": 931601890
        }
    ]
}