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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=61",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT3/segments?format=api&page=59",
    "results_count": 143782,
    "results_per_page": 20,
    "num_pages": 7190,
    "page_number": 60,
    "results": [
        {
            "start": 817277378,
            "stop": 817277389
        },
        {
            "start": 817277393,
            "stop": 817277473
        },
        {
            "start": 817277477,
            "stop": 817278977
        },
        {
            "start": 817278981,
            "stop": 817280995
        },
        {
            "start": 817280999,
            "stop": 817281042
        },
        {
            "start": 817281045,
            "stop": 817282710
        },
        {
            "start": 817282715,
            "stop": 817282978
        },
        {
            "start": 817283102,
            "stop": 817283236
        },
        {
            "start": 817283241,
            "stop": 817286395
        },
        {
            "start": 817286398,
            "stop": 817286400
        },
        {
            "start": 817286404,
            "stop": 817286430
        },
        {
            "start": 817290054,
            "stop": 817290085
        },
        {
            "start": 817290106,
            "stop": 817290178
        },
        {
            "start": 817290316,
            "stop": 817290317
        },
        {
            "start": 817290340,
            "stop": 817290341
        },
        {
            "start": 817290353,
            "stop": 817290361
        },
        {
            "start": 817290375,
            "stop": 817290418
        },
        {
            "start": 817290427,
            "stop": 817290446
        },
        {
            "start": 817290449,
            "stop": 817290525
        },
        {
            "start": 817290555,
            "stop": 817290898
        }
    ]
}