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/H2_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/H2_STOCH_CAT1/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=99",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 100,
    "results": [
        {
            "start": 827782330,
            "stop": 827782475
        },
        {
            "start": 827782479,
            "stop": 827784073
        },
        {
            "start": 827785085,
            "stop": 827786336
        },
        {
            "start": 827786368,
            "stop": 827786454
        },
        {
            "start": 827787236,
            "stop": 827790080
        },
        {
            "start": 827790112,
            "stop": 827790420
        },
        {
            "start": 827790421,
            "stop": 827791068
        },
        {
            "start": 827791069,
            "stop": 827791125
        },
        {
            "start": 827791126,
            "stop": 827791256
        },
        {
            "start": 827791259,
            "stop": 827791513
        },
        {
            "start": 827792432,
            "stop": 827793073
        },
        {
            "start": 827793898,
            "stop": 827794742
        },
        {
            "start": 827795251,
            "stop": 827795260
        },
        {
            "start": 827795261,
            "stop": 827797184
        },
        {
            "start": 827797216,
            "stop": 827798400
        },
        {
            "start": 827798432,
            "stop": 827799136
        },
        {
            "start": 827799168,
            "stop": 827802656
        },
        {
            "start": 827802688,
            "stop": 827811840
        },
        {
            "start": 827811904,
            "stop": 827812320
        },
        {
            "start": 827812352,
            "stop": 827812384
        }
    ]
}