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=200
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=201",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=199",
    "results_count": 7130,
    "results_per_page": 20,
    "num_pages": 357,
    "page_number": 200,
    "results": [
        {
            "start": 1240142947,
            "stop": 1240143066
        },
        {
            "start": 1240143067,
            "stop": 1240143186
        },
        {
            "start": 1240143187,
            "stop": 1240143306
        },
        {
            "start": 1240143307,
            "stop": 1240143426
        },
        {
            "start": 1240143427,
            "stop": 1240143546
        },
        {
            "start": 1240143547,
            "stop": 1240143666
        },
        {
            "start": 1240143667,
            "stop": 1240143786
        },
        {
            "start": 1240143787,
            "stop": 1240143906
        },
        {
            "start": 1240143907,
            "stop": 1240144026
        },
        {
            "start": 1240144027,
            "stop": 1240144146
        },
        {
            "start": 1240144147,
            "stop": 1240144266
        },
        {
            "start": 1240144267,
            "stop": 1240144386
        },
        {
            "start": 1240144387,
            "stop": 1240144506
        },
        {
            "start": 1240144507,
            "stop": 1240144626
        },
        {
            "start": 1240144627,
            "stop": 1240144746
        },
        {
            "start": 1240144747,
            "stop": 1240144866
        },
        {
            "start": 1240144867,
            "stop": 1240144986
        },
        {
            "start": 1240144987,
            "stop": 1240145106
        },
        {
            "start": 1240145107,
            "stop": 1240145226
        },
        {
            "start": 1240145227,
            "stop": 1240145346
        }
    ]
}