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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=249",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 250,
    "results": [
        {
            "start": 845159036,
            "stop": 845159182
        },
        {
            "start": 845159292,
            "stop": 845160100
        },
        {
            "start": 845160103,
            "stop": 845160349
        },
        {
            "start": 845160766,
            "stop": 845162619
        },
        {
            "start": 845162799,
            "stop": 845163949
        },
        {
            "start": 845163952,
            "stop": 845176189
        },
        {
            "start": 845176299,
            "stop": 845177840
        },
        {
            "start": 845178140,
            "stop": 845186723
        },
        {
            "start": 845186833,
            "stop": 845187344
        },
        {
            "start": 845187746,
            "stop": 845216180
        },
        {
            "start": 845216184,
            "stop": 845221788
        },
        {
            "start": 845221796,
            "stop": 845222934
        },
        {
            "start": 845232926,
            "stop": 845237993
        },
        {
            "start": 845312859,
            "stop": 845315016
        },
        {
            "start": 845315022,
            "stop": 845316279
        },
        {
            "start": 845316591,
            "stop": 845318186
        },
        {
            "start": 845318694,
            "stop": 845319958
        },
        {
            "start": 845320068,
            "stop": 845320241
        },
        {
            "start": 845320244,
            "stop": 845321055
        },
        {
            "start": 845321738,
            "stop": 845322465
        }
    ]
}