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=10020
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=10021",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10019",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10020,
    "results": [
        {
            "start": 872374983,
            "stop": 872375000
        },
        {
            "start": 872375039,
            "stop": 872375065
        },
        {
            "start": 872375171,
            "stop": 872375486
        },
        {
            "start": 872375774,
            "stop": 872375946
        },
        {
            "start": 872376066,
            "stop": 872376326
        },
        {
            "start": 872376362,
            "stop": 872376680
        },
        {
            "start": 872376716,
            "stop": 872377049
        },
        {
            "start": 872377086,
            "stop": 872377098
        },
        {
            "start": 872377139,
            "stop": 872377500
        },
        {
            "start": 872378160,
            "stop": 872378289
        },
        {
            "start": 872378325,
            "stop": 872378329
        },
        {
            "start": 872378365,
            "stop": 872378386
        },
        {
            "start": 872378422,
            "stop": 872378700
        },
        {
            "start": 872378736,
            "stop": 872379215
        },
        {
            "start": 872379232,
            "stop": 872379285
        },
        {
            "start": 872379361,
            "stop": 872379439
        },
        {
            "start": 872379475,
            "stop": 872379537
        },
        {
            "start": 872379617,
            "stop": 872379640
        },
        {
            "start": 872379682,
            "stop": 872379707
        },
        {
            "start": 872379781,
            "stop": 872379840
        }
    ]
}