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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=3601",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT3/segments?format=api&page=3599",
    "results_count": 77087,
    "results_per_page": 20,
    "num_pages": 3855,
    "page_number": 3600,
    "results": [
        {
            "start": 871999888,
            "stop": 872000141
        },
        {
            "start": 872000158,
            "stop": 872000426
        },
        {
            "start": 872000450,
            "stop": 872000734
        },
        {
            "start": 872000751,
            "stop": 872002183
        },
        {
            "start": 872002200,
            "stop": 872002733
        },
        {
            "start": 872002750,
            "stop": 872003372
        },
        {
            "start": 872003389,
            "stop": 872003656
        },
        {
            "start": 872003673,
            "stop": 872004255
        },
        {
            "start": 872004272,
            "stop": 872004493
        },
        {
            "start": 872004510,
            "stop": 872004931
        },
        {
            "start": 872004948,
            "stop": 872005313
        },
        {
            "start": 872005330,
            "stop": 872006280
        },
        {
            "start": 872006400,
            "stop": 872006614
        },
        {
            "start": 872006631,
            "stop": 872006784
        },
        {
            "start": 872006801,
            "stop": 872007919
        },
        {
            "start": 872007936,
            "stop": 872008132
        },
        {
            "start": 872008151,
            "stop": 872008501
        },
        {
            "start": 872008518,
            "stop": 872008657
        },
        {
            "start": 872008674,
            "stop": 872009106
        },
        {
            "start": 872009133,
            "stop": 872009350
        }
    ]
}