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=234
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=235",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT1/segments?format=api&page=233",
    "results_count": 11387,
    "results_per_page": 20,
    "num_pages": 570,
    "page_number": 234,
    "results": [
        {
            "start": 837297137,
            "stop": 837297180
        },
        {
            "start": 837297219,
            "stop": 837297668
        },
        {
            "start": 837297670,
            "stop": 837297923
        },
        {
            "start": 837297925,
            "stop": 837298877
        },
        {
            "start": 837298878,
            "stop": 837299395
        },
        {
            "start": 837299396,
            "stop": 837304900
        },
        {
            "start": 837306285,
            "stop": 837307893
        },
        {
            "start": 837308170,
            "stop": 837317334
        },
        {
            "start": 837317335,
            "stop": 837317995
        },
        {
            "start": 837317996,
            "stop": 837321670
        },
        {
            "start": 837321672,
            "stop": 837324900
        },
        {
            "start": 837325094,
            "stop": 837330149
        },
        {
            "start": 837330151,
            "stop": 837331924
        },
        {
            "start": 837331926,
            "stop": 837331983
        },
        {
            "start": 837331986,
            "stop": 837332016
        },
        {
            "start": 837333798,
            "stop": 837341820
        },
        {
            "start": 837344250,
            "stop": 837344918
        },
        {
            "start": 837344920,
            "stop": 837345124
        },
        {
            "start": 837345211,
            "stop": 837345501
        },
        {
            "start": 837345503,
            "stop": 837345514
        }
    ]
}