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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=256",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=254",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 255,
    "results": [
        {
            "start": 839039344,
            "stop": 839041009
        },
        {
            "start": 839041011,
            "stop": 839042286
        },
        {
            "start": 839043952,
            "stop": 839054465
        },
        {
            "start": 839055062,
            "stop": 839078830
        },
        {
            "start": 839081283,
            "stop": 839081358
        },
        {
            "start": 839081360,
            "stop": 839081423
        },
        {
            "start": 839081498,
            "stop": 839082382
        },
        {
            "start": 839082622,
            "stop": 839082798
        },
        {
            "start": 839099440,
            "stop": 839103197
        },
        {
            "start": 839104044,
            "stop": 839106289
        },
        {
            "start": 839106291,
            "stop": 839110834
        },
        {
            "start": 839110916,
            "stop": 839111596
        },
        {
            "start": 839111969,
            "stop": 839126298
        },
        {
            "start": 839126300,
            "stop": 839126794
        },
        {
            "start": 839127262,
            "stop": 839136493
        },
        {
            "start": 839140486,
            "stop": 839141304
        },
        {
            "start": 839141306,
            "stop": 839146129
        },
        {
            "start": 839146131,
            "stop": 839146164
        },
        {
            "start": 839146942,
            "stop": 839150307
        },
        {
            "start": 839150480,
            "stop": 839162430
        }
    ]
}