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/O3b/timelines/L1_CBC_CAT3/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/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/O3b/timelines/L1_CBC_CAT3/segments?format=api&page=255",
    "results_count": 9495,
    "results_per_page": 20,
    "num_pages": 475,
    "page_number": 256,
    "results": [
        {
            "start": 1264421673,
            "stop": 1264421674
        },
        {
            "start": 1264421676,
            "stop": 1264421681
        },
        {
            "start": 1264421682,
            "stop": 1264421694
        },
        {
            "start": 1264421697,
            "stop": 1264421727
        },
        {
            "start": 1264421728,
            "stop": 1264421730
        },
        {
            "start": 1264421732,
            "stop": 1264421756
        },
        {
            "start": 1264421758,
            "stop": 1264421794
        },
        {
            "start": 1264421797,
            "stop": 1264421808
        },
        {
            "start": 1264421809,
            "stop": 1264421812
        },
        {
            "start": 1264421814,
            "stop": 1264421857
        },
        {
            "start": 1264421860,
            "stop": 1264421876
        },
        {
            "start": 1264421878,
            "stop": 1264421888
        },
        {
            "start": 1264421893,
            "stop": 1264421899
        },
        {
            "start": 1264421901,
            "stop": 1264421927
        },
        {
            "start": 1264421929,
            "stop": 1264421953
        },
        {
            "start": 1264421955,
            "stop": 1264422057
        },
        {
            "start": 1264422062,
            "stop": 1264422096
        },
        {
            "start": 1264422099,
            "stop": 1264422212
        },
        {
            "start": 1264422214,
            "stop": 1264422225
        },
        {
            "start": 1264422226,
            "stop": 1264422239
        }
    ]
}