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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=19",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/L1_BURST_CAT3/segments?format=api&page=17",
    "results_count": 109510,
    "results_per_page": 20,
    "num_pages": 5476,
    "page_number": 18,
    "results": [
        {
            "start": 1126313772,
            "stop": 1126313940
        },
        {
            "start": 1126313941,
            "stop": 1126314222
        },
        {
            "start": 1126314223,
            "stop": 1126314328
        },
        {
            "start": 1126314329,
            "stop": 1126314392
        },
        {
            "start": 1126314393,
            "stop": 1126314550
        },
        {
            "start": 1126314551,
            "stop": 1126314950
        },
        {
            "start": 1126314951,
            "stop": 1126315015
        },
        {
            "start": 1126315016,
            "stop": 1126315174
        },
        {
            "start": 1126315175,
            "stop": 1126315354
        },
        {
            "start": 1126315356,
            "stop": 1126315466
        },
        {
            "start": 1126315468,
            "stop": 1126315489
        },
        {
            "start": 1126315491,
            "stop": 1126315573
        },
        {
            "start": 1126315574,
            "stop": 1126315652
        },
        {
            "start": 1126315653,
            "stop": 1126315797
        },
        {
            "start": 1126315798,
            "stop": 1126316090
        },
        {
            "start": 1126316091,
            "stop": 1126316198
        },
        {
            "start": 1126316199,
            "stop": 1126316262
        },
        {
            "start": 1126316263,
            "stop": 1126316411
        },
        {
            "start": 1126316412,
            "stop": 1126316715
        },
        {
            "start": 1126316716,
            "stop": 1126316821
        }
    ]
}