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

{
    "next": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/O2/timelines/H1_CBC_CAT3/segments?format=api&page=100",
    "results_count": 8301,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 101,
    "results": [
        {
            "start": 1175802333,
            "stop": 1175802370
        },
        {
            "start": 1175802371,
            "stop": 1175802372
        },
        {
            "start": 1175802373,
            "stop": 1175802379
        },
        {
            "start": 1175802383,
            "stop": 1175802385
        },
        {
            "start": 1175802386,
            "stop": 1175802387
        },
        {
            "start": 1175802388,
            "stop": 1175802392
        },
        {
            "start": 1175802396,
            "stop": 1175802456
        },
        {
            "start": 1175802459,
            "stop": 1175802461
        },
        {
            "start": 1175802465,
            "stop": 1175802466
        },
        {
            "start": 1175802467,
            "stop": 1175802478
        },
        {
            "start": 1175802481,
            "stop": 1175802499
        },
        {
            "start": 1175802502,
            "stop": 1175802686
        },
        {
            "start": 1175802689,
            "stop": 1175802690
        },
        {
            "start": 1175802691,
            "stop": 1175802692
        },
        {
            "start": 1175802693,
            "stop": 1175802694
        },
        {
            "start": 1175802695,
            "stop": 1175802696
        },
        {
            "start": 1175802699,
            "stop": 1175802786
        },
        {
            "start": 1175802787,
            "stop": 1175802934
        },
        {
            "start": 1175802935,
            "stop": 1175802939
        },
        {
            "start": 1175802941,
            "stop": 1175803023
        }
    ]
}