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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=303",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=301",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 302,
    "results": [
        {
            "start": 858670913,
            "stop": 858691574
        },
        {
            "start": 858691987,
            "stop": 858693641
        },
        {
            "start": 858694828,
            "stop": 858695728
        },
        {
            "start": 858696013,
            "stop": 858696749
        },
        {
            "start": 858706336,
            "stop": 858718550
        },
        {
            "start": 858719332,
            "stop": 858721098
        },
        {
            "start": 858721188,
            "stop": 858721502
        },
        {
            "start": 858725599,
            "stop": 858725911
        },
        {
            "start": 858726967,
            "stop": 858752427
        },
        {
            "start": 858753554,
            "stop": 858771973
        },
        {
            "start": 858773214,
            "stop": 858793046
        },
        {
            "start": 858793210,
            "stop": 858819547
        },
        {
            "start": 858833688,
            "stop": 858842481
        },
        {
            "start": 858843550,
            "stop": 858861269
        },
        {
            "start": 858862087,
            "stop": 858869080
        },
        {
            "start": 858871769,
            "stop": 858880465
        },
        {
            "start": 858880538,
            "stop": 858926300
        },
        {
            "start": 858927707,
            "stop": 858941663
        },
        {
            "start": 858942757,
            "stop": 858945180
        },
        {
            "start": 858945897,
            "stop": 858949860
        }
    ]
}