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=5256
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=5257",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT3/segments?format=api&page=5255",
    "results_count": 106145,
    "results_per_page": 20,
    "num_pages": 5308,
    "page_number": 5256,
    "results": [
        {
            "start": 874594611,
            "stop": 874594950
        },
        {
            "start": 874601066,
            "stop": 874601498
        },
        {
            "start": 874601536,
            "stop": 874601587
        },
        {
            "start": 874601623,
            "stop": 874601875
        },
        {
            "start": 874601911,
            "stop": 874602588
        },
        {
            "start": 874602648,
            "stop": 874602652
        },
        {
            "start": 874602688,
            "stop": 874603074
        },
        {
            "start": 874603128,
            "stop": 874603161
        },
        {
            "start": 874603197,
            "stop": 874603638
        },
        {
            "start": 874603674,
            "stop": 874604989
        },
        {
            "start": 874604997,
            "stop": 874606381
        },
        {
            "start": 874606431,
            "stop": 874608848
        },
        {
            "start": 874608888,
            "stop": 874611673
        },
        {
            "start": 874611740,
            "stop": 874612170
        },
        {
            "start": 874612410,
            "stop": 874612848
        },
        {
            "start": 874612884,
            "stop": 874615859
        },
        {
            "start": 874615895,
            "stop": 874616270
        },
        {
            "start": 874616307,
            "stop": 874616568
        },
        {
            "start": 874617160,
            "stop": 874617366
        },
        {
            "start": 874617373,
            "stop": 874617720
        }
    ]
}