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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=122",
    "results_count": 154481,
    "results_per_page": 20,
    "num_pages": 7725,
    "page_number": 123,
    "results": [
        {
            "start": 931782338,
            "stop": 931782353
        },
        {
            "start": 931782378,
            "stop": 931782454
        },
        {
            "start": 931782512,
            "stop": 931782518
        },
        {
            "start": 931782584,
            "stop": 931782592
        },
        {
            "start": 931782637,
            "stop": 931782653
        },
        {
            "start": 931782688,
            "stop": 931782708
        },
        {
            "start": 931782730,
            "stop": 931782759
        },
        {
            "start": 931782880,
            "stop": 931782922
        },
        {
            "start": 931782940,
            "stop": 931782948
        },
        {
            "start": 931782986,
            "stop": 931782992
        },
        {
            "start": 931783043,
            "stop": 931783057
        },
        {
            "start": 931783077,
            "stop": 931783084
        },
        {
            "start": 931783125,
            "stop": 931783148
        },
        {
            "start": 931783314,
            "stop": 931783353
        },
        {
            "start": 931783371,
            "stop": 931783457
        },
        {
            "start": 931783503,
            "stop": 931783550
        },
        {
            "start": 931783593,
            "stop": 931783600
        },
        {
            "start": 931783648,
            "stop": 931783662
        },
        {
            "start": 931783680,
            "stop": 931783686
        },
        {
            "start": 931783747,
            "stop": 931783810
        }
    ]
}