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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=301",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=299",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 300,
    "results": [
        {
            "start": 852257631,
            "stop": 852257636
        },
        {
            "start": 852257641,
            "stop": 852257652
        },
        {
            "start": 852257665,
            "stop": 852257690
        },
        {
            "start": 852257704,
            "stop": 852257738
        },
        {
            "start": 852257742,
            "stop": 852257767
        },
        {
            "start": 852257776,
            "stop": 852257805
        },
        {
            "start": 852257809,
            "stop": 852257833
        },
        {
            "start": 852257838,
            "stop": 852257876
        },
        {
            "start": 852257880,
            "stop": 852257981
        },
        {
            "start": 852257985,
            "stop": 852258000
        },
        {
            "start": 852258005,
            "stop": 852258039
        },
        {
            "start": 852258043,
            "stop": 852258106
        },
        {
            "start": 852258110,
            "stop": 852258125
        },
        {
            "start": 852258130,
            "stop": 852258135
        },
        {
            "start": 852258144,
            "stop": 852258251
        },
        {
            "start": 852258255,
            "stop": 852258275
        },
        {
            "start": 852258285,
            "stop": 852258352
        },
        {
            "start": 852258356,
            "stop": 852258455
        },
        {
            "start": 852258458,
            "stop": 852258492
        },
        {
            "start": 852258501,
            "stop": 852258525
        }
    ]
}