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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT1/segments?format=api&page=255",
    "results_count": 6293,
    "results_per_page": 20,
    "num_pages": 315,
    "page_number": 256,
    "results": [
        {
            "start": 862470338,
            "stop": 862486494
        },
        {
            "start": 862487574,
            "stop": 862491643
        },
        {
            "start": 862493320,
            "stop": 862504659
        },
        {
            "start": 862504813,
            "stop": 862508018
        },
        {
            "start": 862508128,
            "stop": 862512277
        },
        {
            "start": 862512774,
            "stop": 862519300
        },
        {
            "start": 862520750,
            "stop": 862525161
        },
        {
            "start": 862525222,
            "stop": 862525226
        },
        {
            "start": 862525236,
            "stop": 862543510
        },
        {
            "start": 862543596,
            "stop": 862557363
        },
        {
            "start": 862559357,
            "stop": 862576591
        },
        {
            "start": 862579855,
            "stop": 862595801
        },
        {
            "start": 862597515,
            "stop": 862598461
        },
        {
            "start": 862599712,
            "stop": 862601861
        },
        {
            "start": 862602112,
            "stop": 862640796
        },
        {
            "start": 862641784,
            "stop": 862662241
        },
        {
            "start": 862662369,
            "stop": 862665567
        },
        {
            "start": 862667367,
            "stop": 862671304
        },
        {
            "start": 862694322,
            "stop": 862699739
        },
        {
            "start": 862700303,
            "stop": 862717665
        }
    ]
}