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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=193",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=191",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 192,
    "results": [
        {
            "start": 845160766,
            "stop": 845162619
        },
        {
            "start": 845162799,
            "stop": 845176189
        },
        {
            "start": 845176299,
            "stop": 845177840
        },
        {
            "start": 845178140,
            "stop": 845186723
        },
        {
            "start": 845186833,
            "stop": 845187344
        },
        {
            "start": 845187746,
            "stop": 845221789
        },
        {
            "start": 845221793,
            "stop": 845222934
        },
        {
            "start": 845232926,
            "stop": 845237993
        },
        {
            "start": 845312859,
            "stop": 845316279
        },
        {
            "start": 845316591,
            "stop": 845318186
        },
        {
            "start": 845318694,
            "stop": 845319958
        },
        {
            "start": 845320068,
            "stop": 845321055
        },
        {
            "start": 845321738,
            "stop": 845324259
        },
        {
            "start": 845324667,
            "stop": 845325531
        },
        {
            "start": 845325679,
            "stop": 845329679
        },
        {
            "start": 845330997,
            "stop": 845360333
        },
        {
            "start": 845360443,
            "stop": 845363256
        },
        {
            "start": 845363556,
            "stop": 845376946
        },
        {
            "start": 845381950,
            "stop": 845398667
        },
        {
            "start": 845411788,
            "stop": 845421354
        }
    ]
}