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/H1_CBCLOW_CAT4/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/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT4/segments?format=api&page=99",
    "results_count": 164472,
    "results_per_page": 20,
    "num_pages": 8224,
    "page_number": 100,
    "results": [
        {
            "start": 931741947,
            "stop": 931742087
        },
        {
            "start": 931742104,
            "stop": 931742332
        },
        {
            "start": 931742350,
            "stop": 931742733
        },
        {
            "start": 931742751,
            "stop": 931743001
        },
        {
            "start": 931743004,
            "stop": 931743068
        },
        {
            "start": 931743073,
            "stop": 931743089
        },
        {
            "start": 931743107,
            "stop": 931743290
        },
        {
            "start": 931743310,
            "stop": 931743342
        },
        {
            "start": 931743344,
            "stop": 931743472
        },
        {
            "start": 931743492,
            "stop": 931743747
        },
        {
            "start": 931743749,
            "stop": 931743757
        },
        {
            "start": 931743775,
            "stop": 931743958
        },
        {
            "start": 931743982,
            "stop": 931744004
        },
        {
            "start": 931744022,
            "stop": 931744122
        },
        {
            "start": 931744183,
            "stop": 931744198
        },
        {
            "start": 931744215,
            "stop": 931744231
        },
        {
            "start": 931744235,
            "stop": 931744759
        },
        {
            "start": 931744777,
            "stop": 931744815
        },
        {
            "start": 931745175,
            "stop": 931745180
        },
        {
            "start": 931745198,
            "stop": 931745232
        }
    ]
}