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/S6/timelines/H1_BURST_CAT2/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/S6/timelines/H1_BURST_CAT2/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT2/segments?format=api&page=254",
    "results_count": 10804,
    "results_per_page": 20,
    "num_pages": 541,
    "page_number": 255,
    "results": [
        {
            "start": 931761257,
            "stop": 931761258
        },
        {
            "start": 931761260,
            "stop": 931761410
        },
        {
            "start": 931761412,
            "stop": 931761459
        },
        {
            "start": 931761461,
            "stop": 931761492
        },
        {
            "start": 931761493,
            "stop": 931761534
        },
        {
            "start": 931761537,
            "stop": 931761589
        },
        {
            "start": 931765138,
            "stop": 931765737
        },
        {
            "start": 931765739,
            "stop": 931766193
        },
        {
            "start": 931766196,
            "stop": 931766591
        },
        {
            "start": 931766593,
            "stop": 931767134
        },
        {
            "start": 931767136,
            "stop": 931767251
        },
        {
            "start": 931767252,
            "stop": 931767268
        },
        {
            "start": 931767270,
            "stop": 931767271
        },
        {
            "start": 931767273,
            "stop": 931767276
        },
        {
            "start": 931767277,
            "stop": 931768332
        },
        {
            "start": 931768334,
            "stop": 931768536
        },
        {
            "start": 931768538,
            "stop": 931768735
        },
        {
            "start": 931768736,
            "stop": 931768774
        },
        {
            "start": 931768778,
            "stop": 931768785
        },
        {
            "start": 931768787,
            "stop": 931768803
        }
    ]
}