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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_HW_CBC/segments?format=api&page=25",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_HW_CBC/segments?format=api&page=23",
    "results_count": 793,
    "results_per_page": 20,
    "num_pages": 40,
    "page_number": 24,
    "results": [
        {
            "start": 837393841,
            "stop": 837393968
        },
        {
            "start": 837399857,
            "stop": 837399984
        },
        {
            "start": 837408922,
            "stop": 837409057
        },
        {
            "start": 837437313,
            "stop": 837437457
        },
        {
            "start": 837467082,
            "stop": 837467217
        },
        {
            "start": 837480208,
            "stop": 837480352
        },
        {
            "start": 837498392,
            "stop": 837498522
        },
        {
            "start": 837511113,
            "stop": 837511248
        },
        {
            "start": 837570913,
            "stop": 837571057
        },
        {
            "start": 837587161,
            "stop": 837587304
        },
        {
            "start": 837616193,
            "stop": 837616336
        },
        {
            "start": 837630042,
            "stop": 837630185
        },
        {
            "start": 837635936,
            "stop": 837636064
        },
        {
            "start": 837653017,
            "stop": 837653145
        },
        {
            "start": 837715848,
            "stop": 837715984
        },
        {
            "start": 837737009,
            "stop": 837737145
        },
        {
            "start": 837745802,
            "stop": 837745936
        },
        {
            "start": 837753945,
            "stop": 837754081
        },
        {
            "start": 837765562,
            "stop": 837765769
        },
        {
            "start": 837775682,
            "stop": 837775824
        }
    ]
}