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=360
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=361",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=359",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 360,
    "results": [
        {
            "start": 847888415,
            "stop": 847894306
        },
        {
            "start": 847894307,
            "stop": 847894978
        },
        {
            "start": 847895953,
            "stop": 847898049
        },
        {
            "start": 847903141,
            "stop": 847904163
        },
        {
            "start": 847904954,
            "stop": 847908396
        },
        {
            "start": 847908397,
            "stop": 847915812
        },
        {
            "start": 847915905,
            "stop": 847916521
        },
        {
            "start": 847916522,
            "stop": 847925805
        },
        {
            "start": 847927938,
            "stop": 847929613
        },
        {
            "start": 847929615,
            "stop": 847934449
        },
        {
            "start": 847934451,
            "stop": 847935956
        },
        {
            "start": 847935958,
            "stop": 847936235
        },
        {
            "start": 847936236,
            "stop": 847943081
        },
        {
            "start": 847943083,
            "stop": 847949197
        },
        {
            "start": 847950554,
            "stop": 847954905
        },
        {
            "start": 847961202,
            "stop": 847961403
        },
        {
            "start": 847961405,
            "stop": 847963222
        },
        {
            "start": 847963826,
            "stop": 847965213
        },
        {
            "start": 847965215,
            "stop": 847973105
        },
        {
            "start": 847973107,
            "stop": 847978918
        }
    ]
}