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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=145",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_DATA/segments?format=api&page=143",
    "results_count": 3818,
    "results_per_page": 20,
    "num_pages": 191,
    "page_number": 144,
    "results": [
        {
            "start": 857163125,
            "stop": 857169285
        },
        {
            "start": 857170484,
            "stop": 857232137
        },
        {
            "start": 857251150,
            "stop": 857258015
        },
        {
            "start": 857258374,
            "stop": 857262635
        },
        {
            "start": 857263073,
            "stop": 857264648
        },
        {
            "start": 857264989,
            "stop": 857268819
        },
        {
            "start": 857269210,
            "stop": 857308434
        },
        {
            "start": 857308975,
            "stop": 857321204
        },
        {
            "start": 857321382,
            "stop": 857335790
        },
        {
            "start": 857336119,
            "stop": 857362650
        },
        {
            "start": 857363924,
            "stop": 857366124
        },
        {
            "start": 857367553,
            "stop": 857402386
        },
        {
            "start": 857403321,
            "stop": 857406433
        },
        {
            "start": 857410112,
            "stop": 857411415
        },
        {
            "start": 857411852,
            "stop": 857412761
        },
        {
            "start": 857423453,
            "stop": 857424446
        },
        {
            "start": 857424559,
            "stop": 857426863
        },
        {
            "start": 857427569,
            "stop": 857428828
        },
        {
            "start": 857428936,
            "stop": 857430389
        },
        {
            "start": 857430486,
            "stop": 857433480
        }
    ]
}