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_STOCH_CAT1/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/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=99",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 100,
    "results": [
        {
            "start": 825738688,
            "stop": 825739602
        },
        {
            "start": 825751532,
            "stop": 825751533
        },
        {
            "start": 825751537,
            "stop": 825751540
        },
        {
            "start": 825751551,
            "stop": 825751553
        },
        {
            "start": 825751575,
            "stop": 825751578
        },
        {
            "start": 825751586,
            "stop": 825751589
        },
        {
            "start": 825751602,
            "stop": 825751603
        },
        {
            "start": 825751612,
            "stop": 825751614
        },
        {
            "start": 825751619,
            "stop": 825751621
        },
        {
            "start": 825751636,
            "stop": 825751638
        },
        {
            "start": 825751642,
            "stop": 825751645
        },
        {
            "start": 825752098,
            "stop": 825752104
        },
        {
            "start": 825752118,
            "stop": 825752120
        },
        {
            "start": 825752125,
            "stop": 825752129
        },
        {
            "start": 825752138,
            "stop": 825752144
        },
        {
            "start": 825752147,
            "stop": 825752154
        },
        {
            "start": 825752157,
            "stop": 825752158
        },
        {
            "start": 825752168,
            "stop": 825752177
        },
        {
            "start": 825752305,
            "stop": 825752308
        },
        {
            "start": 825752322,
            "stop": 825752323
        }
    ]
}