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_CBCHIGH_CAT1/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/L1_CBCHIGH_CAT1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT1/segments?format=api&page=122",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 123,
    "results": [
        {
            "start": 837186605,
            "stop": 837188989
        },
        {
            "start": 837197806,
            "stop": 837242913
        },
        {
            "start": 837244003,
            "stop": 837265143
        },
        {
            "start": 837265216,
            "stop": 837269633
        },
        {
            "start": 837269693,
            "stop": 837270453
        },
        {
            "start": 837297137,
            "stop": 837297180
        },
        {
            "start": 837297219,
            "stop": 837304900
        },
        {
            "start": 837306285,
            "stop": 837307893
        },
        {
            "start": 837308170,
            "stop": 837324900
        },
        {
            "start": 837325094,
            "stop": 837332046
        },
        {
            "start": 837333798,
            "stop": 837341849
        },
        {
            "start": 837344250,
            "stop": 837345124
        },
        {
            "start": 837345211,
            "stop": 837345544
        },
        {
            "start": 837355808,
            "stop": 837356072
        },
        {
            "start": 837356126,
            "stop": 837357101
        },
        {
            "start": 837358098,
            "stop": 837359761
        },
        {
            "start": 837360625,
            "stop": 837362445
        },
        {
            "start": 837362826,
            "stop": 837363110
        },
        {
            "start": 837364142,
            "stop": 837370615
        },
        {
            "start": 837371251,
            "stop": 837371412
        }
    ]
}