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=2307
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=2308",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2306",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2307,
    "results": [
        {
            "start": 871439881,
            "stop": 871439951
        },
        {
            "start": 871439961,
            "stop": 871440212
        },
        {
            "start": 871440250,
            "stop": 871441165
        },
        {
            "start": 871444085,
            "stop": 871446177
        },
        {
            "start": 871446248,
            "stop": 871449224
        },
        {
            "start": 871449405,
            "stop": 871451140
        },
        {
            "start": 871451157,
            "stop": 871452049
        },
        {
            "start": 871452066,
            "stop": 871453884
        },
        {
            "start": 871453901,
            "stop": 871454350
        },
        {
            "start": 871454367,
            "stop": 871455628
        },
        {
            "start": 871455645,
            "stop": 871456497
        },
        {
            "start": 871456518,
            "stop": 871457099
        },
        {
            "start": 871457116,
            "stop": 871458710
        },
        {
            "start": 871458790,
            "stop": 871460359
        },
        {
            "start": 871460376,
            "stop": 871468136
        },
        {
            "start": 871468155,
            "stop": 871469848
        },
        {
            "start": 871469865,
            "stop": 871471595
        },
        {
            "start": 871471602,
            "stop": 871473268
        },
        {
            "start": 871473285,
            "stop": 871476970
        },
        {
            "start": 871476987,
            "stop": 871477369
        }
    ]
}