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=250
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=251",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=249",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 250,
    "results": [
        {
            "start": 821645816,
            "stop": 821645846
        },
        {
            "start": 821645853,
            "stop": 821646130
        },
        {
            "start": 821646137,
            "stop": 821646370
        },
        {
            "start": 821646377,
            "stop": 821646949
        },
        {
            "start": 821646962,
            "stop": 821646975
        },
        {
            "start": 821646982,
            "stop": 821647139
        },
        {
            "start": 821647146,
            "stop": 821647153
        },
        {
            "start": 821647160,
            "stop": 821648012
        },
        {
            "start": 821648019,
            "stop": 821648051
        },
        {
            "start": 821648058,
            "stop": 821648113
        },
        {
            "start": 821649297,
            "stop": 821649765
        },
        {
            "start": 821649772,
            "stop": 821649972
        },
        {
            "start": 821650135,
            "stop": 821650430
        },
        {
            "start": 821650510,
            "stop": 821651810
        },
        {
            "start": 821651890,
            "stop": 821652170
        },
        {
            "start": 821652250,
            "stop": 821652710
        },
        {
            "start": 821652790,
            "stop": 821652875
        },
        {
            "start": 821652882,
            "stop": 821652944
        },
        {
            "start": 821652953,
            "stop": 821653289
        },
        {
            "start": 821653296,
            "stop": 821653453
        }
    ]
}