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

{
    "next": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=202",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=200",
    "results_count": 7130,
    "results_per_page": 20,
    "num_pages": 357,
    "page_number": 201,
    "results": [
        {
            "start": 1240145347,
            "stop": 1240145466
        },
        {
            "start": 1240145467,
            "stop": 1240145586
        },
        {
            "start": 1240145587,
            "stop": 1240145706
        },
        {
            "start": 1240145707,
            "stop": 1240145826
        },
        {
            "start": 1240145827,
            "stop": 1240145946
        },
        {
            "start": 1240145947,
            "stop": 1240146066
        },
        {
            "start": 1240146067,
            "stop": 1240146186
        },
        {
            "start": 1240146187,
            "stop": 1240146306
        },
        {
            "start": 1240146307,
            "stop": 1240146426
        },
        {
            "start": 1240146427,
            "stop": 1240146546
        },
        {
            "start": 1240146547,
            "stop": 1240146666
        },
        {
            "start": 1240146667,
            "stop": 1240146786
        },
        {
            "start": 1240146787,
            "stop": 1240146906
        },
        {
            "start": 1240146907,
            "stop": 1240147026
        },
        {
            "start": 1240147027,
            "stop": 1240147146
        },
        {
            "start": 1240147147,
            "stop": 1240147266
        },
        {
            "start": 1240147267,
            "stop": 1240147386
        },
        {
            "start": 1240147387,
            "stop": 1240147506
        },
        {
            "start": 1240147507,
            "stop": 1240147626
        },
        {
            "start": 1240147627,
            "stop": 1240147726
        }
    ]
}