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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10006",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10004",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10005,
    "results": [
        {
            "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
        },
        {
            "start": 872250409,
            "stop": 872250542
        },
        {
            "start": 872250584,
            "stop": 872250691
        }
    ]
}