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=9
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=10",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=8",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 9,
    "results": [
        {
            "start": 816540032,
            "stop": 816540832
        },
        {
            "start": 816542382,
            "stop": 816548128
        },
        {
            "start": 816609952,
            "stop": 816618515
        },
        {
            "start": 816618518,
            "stop": 816623293
        },
        {
            "start": 816625941,
            "stop": 816626700
        },
        {
            "start": 816626914,
            "stop": 816630133
        },
        {
            "start": 816633130,
            "stop": 816633660
        },
        {
            "start": 816635008,
            "stop": 816635113
        },
        {
            "start": 816635861,
            "stop": 816636905
        },
        {
            "start": 816636973,
            "stop": 816637692
        },
        {
            "start": 816650176,
            "stop": 816656394
        },
        {
            "start": 816656397,
            "stop": 816657324
        },
        {
            "start": 816660712,
            "stop": 816674833
        },
        {
            "start": 816676286,
            "stop": 816703812
        },
        {
            "start": 816703815,
            "stop": 816707713
        },
        {
            "start": 816709659,
            "stop": 816710413
        },
        {
            "start": 816776371,
            "stop": 816776380
        },
        {
            "start": 816776409,
            "stop": 816776410
        },
        {
            "start": 816776414,
            "stop": 816776420
        },
        {
            "start": 816777770,
            "stop": 816777779
        }
    ]
}