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=30
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=31",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=29",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 30,
    "results": [
        {
            "start": 819359552,
            "stop": 819361824
        },
        {
            "start": 819361856,
            "stop": 819362041
        },
        {
            "start": 819362242,
            "stop": 819362593
        },
        {
            "start": 819364026,
            "stop": 819370134
        },
        {
            "start": 819371319,
            "stop": 819377828
        },
        {
            "start": 819378478,
            "stop": 819380113
        },
        {
            "start": 819380976,
            "stop": 819392347
        },
        {
            "start": 819397710,
            "stop": 819400737
        },
        {
            "start": 819402488,
            "stop": 819404684
        },
        {
            "start": 819405436,
            "stop": 819409213
        },
        {
            "start": 819410200,
            "stop": 819410223
        },
        {
            "start": 819411761,
            "stop": 819418753
        },
        {
            "start": 819419475,
            "stop": 819424082
        },
        {
            "start": 819424973,
            "stop": 819424992
        },
        {
            "start": 819425024,
            "stop": 819425440
        },
        {
            "start": 819425472,
            "stop": 819437184
        },
        {
            "start": 819437216,
            "stop": 819458624
        },
        {
            "start": 819458656,
            "stop": 819464576
        },
        {
            "start": 819464608,
            "stop": 819466272
        },
        {
            "start": 819466304,
            "stop": 819468370
        }
    ]
}