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=202
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=203",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/L1_CBC_CAT2/segments?format=api&page=201",
    "results_count": 7130,
    "results_per_page": 20,
    "num_pages": 357,
    "page_number": 202,
    "results": [
        {
            "start": 1240147727,
            "stop": 1240147866
        },
        {
            "start": 1240147867,
            "stop": 1240147986
        },
        {
            "start": 1240147987,
            "stop": 1240148106
        },
        {
            "start": 1240148107,
            "stop": 1240148226
        },
        {
            "start": 1240148227,
            "stop": 1240148346
        },
        {
            "start": 1240148347,
            "stop": 1240148466
        },
        {
            "start": 1240148467,
            "stop": 1240148586
        },
        {
            "start": 1240148587,
            "stop": 1240148706
        },
        {
            "start": 1240148707,
            "stop": 1240148826
        },
        {
            "start": 1240148827,
            "stop": 1240148946
        },
        {
            "start": 1240148947,
            "stop": 1240149066
        },
        {
            "start": 1240149067,
            "stop": 1240149186
        },
        {
            "start": 1240149187,
            "stop": 1240149306
        },
        {
            "start": 1240149307,
            "stop": 1240149426
        },
        {
            "start": 1240149427,
            "stop": 1240149546
        },
        {
            "start": 1240149547,
            "stop": 1240149666
        },
        {
            "start": 1240149667,
            "stop": 1240149786
        },
        {
            "start": 1240149787,
            "stop": 1240149906
        },
        {
            "start": 1240149907,
            "stop": 1240150026
        },
        {
            "start": 1240150027,
            "stop": 1240150146
        }
    ]
}