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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=322",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=320",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 321,
    "results": [
        {
            "start": 822940954,
            "stop": 822941870
        },
        {
            "start": 822941950,
            "stop": 822942853
        },
        {
            "start": 822942930,
            "stop": 822943370
        },
        {
            "start": 822943510,
            "stop": 822943679
        },
        {
            "start": 822943687,
            "stop": 822943711
        },
        {
            "start": 822943718,
            "stop": 822944160
        },
        {
            "start": 822944384,
            "stop": 822944810
        },
        {
            "start": 822944890,
            "stop": 822945384
        },
        {
            "start": 822945391,
            "stop": 822945530
        },
        {
            "start": 822945670,
            "stop": 822946550
        },
        {
            "start": 822946630,
            "stop": 822946970
        },
        {
            "start": 822947233,
            "stop": 822947242
        },
        {
            "start": 822947283,
            "stop": 822947292
        },
        {
            "start": 822947340,
            "stop": 822948968
        },
        {
            "start": 822948975,
            "stop": 822949140
        },
        {
            "start": 822949330,
            "stop": 822949790
        },
        {
            "start": 822949897,
            "stop": 822949944
        },
        {
            "start": 822950050,
            "stop": 822950280
        },
        {
            "start": 822950288,
            "stop": 822950570
        },
        {
            "start": 822950650,
            "stop": 822950870
        }
    ]
}