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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H1L1/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H1L1/segments?format=api&page=122",
    "results_count": 22462,
    "results_per_page": 20,
    "num_pages": 1124,
    "page_number": 123,
    "results": [
        {
            "start": 821924498,
            "stop": 821924798
        },
        {
            "start": 821924975,
            "stop": 821925215
        },
        {
            "start": 821925488,
            "stop": 821925848
        },
        {
            "start": 821926055,
            "stop": 821928215
        },
        {
            "start": 821928894,
            "stop": 821929614
        },
        {
            "start": 821930186,
            "stop": 821930546
        },
        {
            "start": 821930703,
            "stop": 821931183
        },
        {
            "start": 821931473,
            "stop": 821931833
        },
        {
            "start": 821932006,
            "stop": 821932606
        },
        {
            "start": 821932964,
            "stop": 821933504
        },
        {
            "start": 821933768,
            "stop": 821933828
        },
        {
            "start": 821933968,
            "stop": 821934628
        },
        {
            "start": 821934804,
            "stop": 821936784
        },
        {
            "start": 821936951,
            "stop": 821938211
        },
        {
            "start": 821938365,
            "stop": 821938905
        },
        {
            "start": 821939166,
            "stop": 821939286
        },
        {
            "start": 821939769,
            "stop": 821939859
        },
        {
            "start": 821940015,
            "stop": 821940615
        },
        {
            "start": 821940780,
            "stop": 821941350
        },
        {
            "start": 821941500,
            "stop": 821942160
        }
    ]
}