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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=320",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 321,
    "results": [
        {
            "start": 862402115,
            "stop": 862410665
        },
        {
            "start": 862411867,
            "stop": 862467873
        },
        {
            "start": 862470338,
            "stop": 862486494
        },
        {
            "start": 862487574,
            "stop": 862491619
        },
        {
            "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": 862559397
        },
        {
            "start": 862559398,
            "stop": 862576568
        },
        {
            "start": 862579855,
            "stop": 862595778
        },
        {
            "start": 862597515,
            "stop": 862598437
        },
        {
            "start": 862599712,
            "stop": 862601861
        },
        {
            "start": 862602112,
            "stop": 862640796
        },
        {
            "start": 862641784,
            "stop": 862662241
        },
        {
            "start": 862662369,
            "stop": 862665567
        }
    ]
}