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=5234
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=5235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5233",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5234,
    "results": [
        {
            "start": 874296696,
            "stop": 874297169
        },
        {
            "start": 874297239,
            "stop": 874297279
        },
        {
            "start": 874297287,
            "stop": 874297568
        },
        {
            "start": 874297575,
            "stop": 874298028
        },
        {
            "start": 874298150,
            "stop": 874298160
        },
        {
            "start": 874298417,
            "stop": 874298767
        },
        {
            "start": 874298885,
            "stop": 874298906
        },
        {
            "start": 874298949,
            "stop": 874299120
        },
        {
            "start": 874299180,
            "stop": 874299243
        },
        {
            "start": 874299279,
            "stop": 874299303
        },
        {
            "start": 874299363,
            "stop": 874299372
        },
        {
            "start": 874299408,
            "stop": 874299907
        },
        {
            "start": 874299914,
            "stop": 874300656
        },
        {
            "start": 874300673,
            "stop": 874301110
        },
        {
            "start": 874301117,
            "stop": 874302775
        },
        {
            "start": 874302782,
            "stop": 874302867
        },
        {
            "start": 874302903,
            "stop": 874303071
        },
        {
            "start": 874303107,
            "stop": 874303159
        },
        {
            "start": 874303399,
            "stop": 874303778
        },
        {
            "start": 874303814,
            "stop": 874303925
        }
    ]
}