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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=254",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 255,
    "results": [
        {
            "start": 817888647,
            "stop": 817888737
        },
        {
            "start": 817888826,
            "stop": 817888852
        },
        {
            "start": 817888883,
            "stop": 817888919
        },
        {
            "start": 817888939,
            "stop": 817888950
        },
        {
            "start": 817888983,
            "stop": 817889077
        },
        {
            "start": 817889123,
            "stop": 817889166
        },
        {
            "start": 817889169,
            "stop": 817889201
        },
        {
            "start": 817889223,
            "stop": 817889307
        },
        {
            "start": 817889360,
            "stop": 817889447
        },
        {
            "start": 817889473,
            "stop": 817889691
        },
        {
            "start": 817889695,
            "stop": 817889705
        },
        {
            "start": 817889732,
            "stop": 817889756
        },
        {
            "start": 817889778,
            "stop": 817889885
        },
        {
            "start": 817889904,
            "stop": 817889954
        },
        {
            "start": 817889974,
            "stop": 817890021
        },
        {
            "start": 817890028,
            "stop": 817890085
        },
        {
            "start": 817890105,
            "stop": 817890160
        },
        {
            "start": 817890179,
            "stop": 817890195
        },
        {
            "start": 817890227,
            "stop": 817890239
        },
        {
            "start": 817890263,
            "stop": 817890393
        }
    ]
}