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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT4/segments?format=api&page=254",
    "results_count": 177886,
    "results_per_page": 20,
    "num_pages": 8895,
    "page_number": 255,
    "results": [
        {
            "start": 821032980,
            "stop": 821033040
        },
        {
            "start": 821033100,
            "stop": 821033520
        },
        {
            "start": 821033580,
            "stop": 821033640
        },
        {
            "start": 821033760,
            "stop": 821034000
        },
        {
            "start": 821034120,
            "stop": 821034300
        },
        {
            "start": 821034420,
            "stop": 821034453
        },
        {
            "start": 821034460,
            "stop": 821034530
        },
        {
            "start": 821037156,
            "stop": 821037170
        },
        {
            "start": 821037360,
            "stop": 821037373
        },
        {
            "start": 821037497,
            "stop": 821037553
        },
        {
            "start": 821037841,
            "stop": 821037913
        },
        {
            "start": 821052036,
            "stop": 821052300
        },
        {
            "start": 821052420,
            "stop": 821052540
        },
        {
            "start": 821052600,
            "stop": 821052780
        },
        {
            "start": 821052900,
            "stop": 821052913
        },
        {
            "start": 821053056,
            "stop": 821053101
        },
        {
            "start": 821055275,
            "stop": 821055660
        },
        {
            "start": 821055720,
            "stop": 821055733
        },
        {
            "start": 821056143,
            "stop": 821056260
        },
        {
            "start": 821056320,
            "stop": 821056333
        }
    ]
}