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_CBCLOW_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/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=122",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 123,
    "results": [
        {
            "start": 819992473,
            "stop": 819992555
        },
        {
            "start": 819992562,
            "stop": 819992928
        },
        {
            "start": 819992935,
            "stop": 819993038
        },
        {
            "start": 819993045,
            "stop": 819993113
        },
        {
            "start": 819993120,
            "stop": 819993127
        },
        {
            "start": 819993134,
            "stop": 819993741
        },
        {
            "start": 819993748,
            "stop": 819994008
        },
        {
            "start": 819994015,
            "stop": 819994138
        },
        {
            "start": 819994145,
            "stop": 819994472
        },
        {
            "start": 819994481,
            "stop": 819994518
        },
        {
            "start": 819994525,
            "stop": 819994571
        },
        {
            "start": 819994578,
            "stop": 819994683
        },
        {
            "start": 819994690,
            "stop": 819994756
        },
        {
            "start": 819994765,
            "stop": 819995071
        },
        {
            "start": 819995078,
            "stop": 819995332
        },
        {
            "start": 819995339,
            "stop": 819995538
        },
        {
            "start": 819995545,
            "stop": 819995611
        },
        {
            "start": 819995618,
            "stop": 819995633
        },
        {
            "start": 819995640,
            "stop": 819995758
        },
        {
            "start": 819995765,
            "stop": 819996675
        }
    ]
}