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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2008",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCHIGH_CAT2/segments?format=api&page=2006",
    "results_count": 44464,
    "results_per_page": 20,
    "num_pages": 2224,
    "page_number": 2007,
    "results": [
        {
            "start": 857734770,
            "stop": 857734800
        },
        {
            "start": 857734801,
            "stop": 857734804
        },
        {
            "start": 857734808,
            "stop": 857734823
        },
        {
            "start": 857734911,
            "stop": 857735084
        },
        {
            "start": 857735086,
            "stop": 857735089
        },
        {
            "start": 857735090,
            "stop": 857735093
        },
        {
            "start": 857735095,
            "stop": 857735097
        },
        {
            "start": 857735099,
            "stop": 857735109
        },
        {
            "start": 857735112,
            "stop": 857735113
        },
        {
            "start": 857735115,
            "stop": 857735125
        },
        {
            "start": 857735126,
            "stop": 857735132
        },
        {
            "start": 857735134,
            "stop": 857735149
        },
        {
            "start": 857735151,
            "stop": 857735155
        },
        {
            "start": 857735161,
            "stop": 857735162
        },
        {
            "start": 857735164,
            "stop": 857735165
        },
        {
            "start": 857735250,
            "stop": 857735252
        },
        {
            "start": 857735254,
            "stop": 857735256
        },
        {
            "start": 857735258,
            "stop": 857735282
        },
        {
            "start": 857735283,
            "stop": 857735288
        },
        {
            "start": 857735404,
            "stop": 857735405
        }
    ]
}