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=8
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=9",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=7",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 8,
    "results": [
        {
            "start": 816450273,
            "stop": 816453228
        },
        {
            "start": 816453231,
            "stop": 816456751
        },
        {
            "start": 816456753,
            "stop": 816457126
        },
        {
            "start": 816459873,
            "stop": 816462529
        },
        {
            "start": 816462532,
            "stop": 816469847
        },
        {
            "start": 816470728,
            "stop": 816471708
        },
        {
            "start": 816472765,
            "stop": 816481445
        },
        {
            "start": 816482752,
            "stop": 816489312
        },
        {
            "start": 816489344,
            "stop": 816492640
        },
        {
            "start": 816492672,
            "stop": 816493422
        },
        {
            "start": 816493425,
            "stop": 816493547
        },
        {
            "start": 816495423,
            "stop": 816497803
        },
        {
            "start": 816497805,
            "stop": 816503872
        },
        {
            "start": 816503904,
            "stop": 816509032
        },
        {
            "start": 816509035,
            "stop": 816526313
        },
        {
            "start": 816526730,
            "stop": 816526740
        },
        {
            "start": 816528645,
            "stop": 816534628
        },
        {
            "start": 816534631,
            "stop": 816534986
        },
        {
            "start": 816534989,
            "stop": 816535086
        },
        {
            "start": 816535619,
            "stop": 816539552
        }
    ]
}