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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT4/segments?format=api&page=3457",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT4/segments?format=api&page=3455",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 3456,
    "results": [
        {
            "start": 969886592,
            "stop": 969887087
        },
        {
            "start": 969887207,
            "stop": 969887567
        },
        {
            "start": 969887687,
            "stop": 969887727
        },
        {
            "start": 969887730,
            "stop": 969887906
        },
        {
            "start": 969887917,
            "stop": 969887927
        },
        {
            "start": 969888047,
            "stop": 969888407
        },
        {
            "start": 969888527,
            "stop": 969888887
        },
        {
            "start": 969888947,
            "stop": 969889015
        },
        {
            "start": 969889018,
            "stop": 969889020
        },
        {
            "start": 969889024,
            "stop": 969889025
        },
        {
            "start": 969889028,
            "stop": 969889067
        },
        {
            "start": 969889187,
            "stop": 969889228
        },
        {
            "start": 969889231,
            "stop": 969889247
        },
        {
            "start": 969889487,
            "stop": 969889502
        },
        {
            "start": 969889505,
            "stop": 969889769
        },
        {
            "start": 969889790,
            "stop": 969889826
        },
        {
            "start": 969889830,
            "stop": 969889847
        },
        {
            "start": 969890207,
            "stop": 969890327
        },
        {
            "start": 969890330,
            "stop": 969890336
        },
        {
            "start": 969890339,
            "stop": 969890363
        }
    ]
}