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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=257",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_BURST_CAT3/segments?format=api&page=255",
    "results_count": 289660,
    "results_per_page": 20,
    "num_pages": 14483,
    "page_number": 256,
    "results": [
        {
            "start": 931679696,
            "stop": 931679702
        },
        {
            "start": 931679714,
            "stop": 931679715
        },
        {
            "start": 931679717,
            "stop": 931679719
        },
        {
            "start": 931679723,
            "stop": 931679726
        },
        {
            "start": 931679730,
            "stop": 931679731
        },
        {
            "start": 931679733,
            "stop": 931679735
        },
        {
            "start": 931679747,
            "stop": 931679750
        },
        {
            "start": 931679760,
            "stop": 931679761
        },
        {
            "start": 931679764,
            "stop": 931679768
        },
        {
            "start": 931679775,
            "stop": 931679778
        },
        {
            "start": 931679785,
            "stop": 931679787
        },
        {
            "start": 931679792,
            "stop": 931679799
        },
        {
            "start": 931679807,
            "stop": 931679814
        },
        {
            "start": 931679826,
            "stop": 931679837
        },
        {
            "start": 931679850,
            "stop": 931679859
        },
        {
            "start": 931679861,
            "stop": 931679863
        },
        {
            "start": 931679868,
            "stop": 931679871
        },
        {
            "start": 931679877,
            "stop": 931679878
        },
        {
            "start": 931679882,
            "stop": 931679885
        },
        {
            "start": 931679888,
            "stop": 931679889
        }
    ]
}