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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2345",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2343",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2344,
    "results": [
        {
            "start": 871915159,
            "stop": 871915278
        },
        {
            "start": 871915295,
            "stop": 871916053
        },
        {
            "start": 871916070,
            "stop": 871916930
        },
        {
            "start": 871917010,
            "stop": 871918560
        },
        {
            "start": 871918620,
            "stop": 871920214
        },
        {
            "start": 871920253,
            "stop": 871920660
        },
        {
            "start": 871923063,
            "stop": 871924140
        },
        {
            "start": 871924260,
            "stop": 871925690
        },
        {
            "start": 871925830,
            "stop": 871925940
        },
        {
            "start": 871926000,
            "stop": 871926420
        },
        {
            "start": 871926480,
            "stop": 871927320
        },
        {
            "start": 871927380,
            "stop": 871927582
        },
        {
            "start": 871927632,
            "stop": 871927670
        },
        {
            "start": 871927750,
            "stop": 871928630
        },
        {
            "start": 871928770,
            "stop": 871928940
        },
        {
            "start": 871929000,
            "stop": 871929120
        },
        {
            "start": 871929180,
            "stop": 871929300
        },
        {
            "start": 871929420,
            "stop": 871931390
        },
        {
            "start": 871931470,
            "stop": 871931580
        },
        {
            "start": 871931640,
            "stop": 871933275
        }
    ]
}