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=5040
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=5041",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5039",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5040,
    "results": [
        {
            "start": 872656262,
            "stop": 872656375
        },
        {
            "start": 872656392,
            "stop": 872656473
        },
        {
            "start": 872656491,
            "stop": 872656568
        },
        {
            "start": 872656584,
            "stop": 872656605
        },
        {
            "start": 872656622,
            "stop": 872656805
        },
        {
            "start": 872656823,
            "stop": 872656861
        },
        {
            "start": 872656879,
            "stop": 872657001
        },
        {
            "start": 872657019,
            "stop": 872657191
        },
        {
            "start": 872657209,
            "stop": 872657301
        },
        {
            "start": 872657318,
            "stop": 872657493
        },
        {
            "start": 872657510,
            "stop": 872657589
        },
        {
            "start": 872657606,
            "stop": 872657734
        },
        {
            "start": 872657976,
            "stop": 872657989
        },
        {
            "start": 872658121,
            "stop": 872658349
        },
        {
            "start": 872658367,
            "stop": 872658609
        },
        {
            "start": 872658627,
            "stop": 872658829
        },
        {
            "start": 872658846,
            "stop": 872658941
        },
        {
            "start": 872659025,
            "stop": 872659345
        },
        {
            "start": 872659362,
            "stop": 872661318
        },
        {
            "start": 872661334,
            "stop": 872662271
        }
    ]
}