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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT3/segments?format=api&page=99",
    "results_count": 182857,
    "results_per_page": 20,
    "num_pages": 9143,
    "page_number": 100,
    "results": [
        {
            "start": 816918310,
            "stop": 816918318
        },
        {
            "start": 816918348,
            "stop": 816918354
        },
        {
            "start": 816918375,
            "stop": 816918457
        },
        {
            "start": 816918538,
            "stop": 816918549
        },
        {
            "start": 816918726,
            "stop": 816918744
        },
        {
            "start": 816918763,
            "stop": 816918799
        },
        {
            "start": 816920674,
            "stop": 816920685
        },
        {
            "start": 816920733,
            "stop": 816920765
        },
        {
            "start": 816920813,
            "stop": 816920821
        },
        {
            "start": 816920846,
            "stop": 816920873
        },
        {
            "start": 816920912,
            "stop": 816920937
        },
        {
            "start": 816920941,
            "stop": 816920943
        },
        {
            "start": 816920947,
            "stop": 816920973
        },
        {
            "start": 816920994,
            "stop": 816920999
        },
        {
            "start": 816921019,
            "stop": 816921079
        },
        {
            "start": 816921100,
            "stop": 816921248
        },
        {
            "start": 816921268,
            "stop": 816921396
        },
        {
            "start": 816921440,
            "stop": 816921574
        },
        {
            "start": 816921597,
            "stop": 816921605
        },
        {
            "start": 816921625,
            "stop": 816921654
        }
    ]
}