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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5002",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5000",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5001,
    "results": [
        {
            "start": 872244134,
            "stop": 872244324
        },
        {
            "start": 872244360,
            "stop": 872244428
        },
        {
            "start": 872244464,
            "stop": 872244760
        },
        {
            "start": 872244777,
            "stop": 872244828
        },
        {
            "start": 872244864,
            "stop": 872244874
        },
        {
            "start": 872244910,
            "stop": 872245087
        },
        {
            "start": 872245104,
            "stop": 872247241
        },
        {
            "start": 872247258,
            "stop": 872247945
        },
        {
            "start": 872247990,
            "stop": 872247999
        },
        {
            "start": 872248199,
            "stop": 872248224
        },
        {
            "start": 872248273,
            "stop": 872248276
        },
        {
            "start": 872248348,
            "stop": 872248468
        },
        {
            "start": 872248576,
            "stop": 872248805
        },
        {
            "start": 872248857,
            "stop": 872248966
        },
        {
            "start": 872249036,
            "stop": 872249191
        },
        {
            "start": 872249236,
            "stop": 872249288
        },
        {
            "start": 872249327,
            "stop": 872249334
        },
        {
            "start": 872249371,
            "stop": 872249443
        },
        {
            "start": 872249460,
            "stop": 872249530
        },
        {
            "start": 872249566,
            "stop": 872250348
        }
    ]
}