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/L1_CBCLOW_CAT3/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/L1_CBCLOW_CAT3/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=255",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 256,
    "results": [
        {
            "start": 933327171,
            "stop": 933327443
        },
        {
            "start": 933327462,
            "stop": 933327659
        },
        {
            "start": 933327678,
            "stop": 933327824
        },
        {
            "start": 933327825,
            "stop": 933327954
        },
        {
            "start": 933327973,
            "stop": 933329568
        },
        {
            "start": 933329587,
            "stop": 933329654
        },
        {
            "start": 933329696,
            "stop": 933329711
        },
        {
            "start": 933329730,
            "stop": 933329737
        },
        {
            "start": 933329769,
            "stop": 933329794
        },
        {
            "start": 933329814,
            "stop": 933329888
        },
        {
            "start": 933329907,
            "stop": 933329931
        },
        {
            "start": 933329950,
            "stop": 933330132
        },
        {
            "start": 933330137,
            "stop": 933330240
        },
        {
            "start": 933330245,
            "stop": 933330481
        },
        {
            "start": 933330499,
            "stop": 933330527
        },
        {
            "start": 933330546,
            "stop": 933330558
        },
        {
            "start": 933330582,
            "stop": 933330598
        },
        {
            "start": 933330619,
            "stop": 933330754
        },
        {
            "start": 933330761,
            "stop": 933330779
        },
        {
            "start": 933330800,
            "stop": 933330839
        }
    ]
}