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_BURST_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/L1_BURST_CAT2/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=255",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 256,
    "results": [
        {
            "start": 818225548,
            "stop": 818225549
        },
        {
            "start": 818225561,
            "stop": 818225564
        },
        {
            "start": 818225577,
            "stop": 818225579
        },
        {
            "start": 818225582,
            "stop": 818225586
        },
        {
            "start": 818225633,
            "stop": 818225636
        },
        {
            "start": 818225642,
            "stop": 818225643
        },
        {
            "start": 818225651,
            "stop": 818225652
        },
        {
            "start": 818225671,
            "stop": 818225673
        },
        {
            "start": 818225676,
            "stop": 818225677
        },
        {
            "start": 818225681,
            "stop": 818225682
        },
        {
            "start": 818225706,
            "stop": 818225709
        },
        {
            "start": 818225719,
            "stop": 818225723
        },
        {
            "start": 818225730,
            "stop": 818225736
        },
        {
            "start": 818225747,
            "stop": 818225750
        },
        {
            "start": 818225765,
            "stop": 818225766
        },
        {
            "start": 818225769,
            "stop": 818225770
        },
        {
            "start": 818225774,
            "stop": 818225775
        },
        {
            "start": 818225780,
            "stop": 818225782
        },
        {
            "start": 818225788,
            "stop": 818225789
        },
        {
            "start": 818225808,
            "stop": 818225809
        }
    ]
}