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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=122",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 123,
    "results": [
        {
            "start": 825752678,
            "stop": 825752680
        },
        {
            "start": 825752684,
            "stop": 825752688
        },
        {
            "start": 825752693,
            "stop": 825752695
        },
        {
            "start": 825752698,
            "stop": 825752699
        },
        {
            "start": 825752701,
            "stop": 825752710
        },
        {
            "start": 825752712,
            "stop": 825752716
        },
        {
            "start": 825752718,
            "stop": 825752719
        },
        {
            "start": 825752721,
            "stop": 825752731
        },
        {
            "start": 825752738,
            "stop": 825752742
        },
        {
            "start": 825752744,
            "stop": 825752753
        },
        {
            "start": 825752755,
            "stop": 825752758
        },
        {
            "start": 825752760,
            "stop": 825752768
        },
        {
            "start": 825752770,
            "stop": 825752772
        },
        {
            "start": 825752774,
            "stop": 825752777
        },
        {
            "start": 825752784,
            "stop": 825752796
        },
        {
            "start": 825752798,
            "stop": 825752805
        },
        {
            "start": 825752810,
            "stop": 825752831
        },
        {
            "start": 825752833,
            "stop": 825752845
        },
        {
            "start": 825752846,
            "stop": 825752858
        },
        {
            "start": 825752860,
            "stop": 825752868
        }
    ]
}