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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=4001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3999",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 4000,
    "results": [
        {
            "start": 874761851,
            "stop": 874761872
        },
        {
            "start": 874761874,
            "stop": 874761909
        },
        {
            "start": 874761911,
            "stop": 874761915
        },
        {
            "start": 874761917,
            "stop": 874761919
        },
        {
            "start": 874761922,
            "stop": 874761935
        },
        {
            "start": 874761936,
            "stop": 874761944
        },
        {
            "start": 874795340,
            "stop": 874795668
        },
        {
            "start": 874795670,
            "stop": 874796536
        },
        {
            "start": 874796543,
            "stop": 874796673
        },
        {
            "start": 874796691,
            "stop": 874797151
        },
        {
            "start": 874797155,
            "stop": 874797156
        },
        {
            "start": 874797159,
            "stop": 874797925
        },
        {
            "start": 874797929,
            "stop": 874798429
        },
        {
            "start": 874798432,
            "stop": 874798458
        },
        {
            "start": 874798461,
            "stop": 874798492
        },
        {
            "start": 874798495,
            "stop": 874798846
        },
        {
            "start": 874798851,
            "stop": 874798857
        },
        {
            "start": 874798861,
            "stop": 874799714
        },
        {
            "start": 874799717,
            "stop": 874799720
        },
        {
            "start": 874799723,
            "stop": 874799725
        }
    ]
}