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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3982",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_BURST_CAT2/segments?format=api&page=3980",
    "results_count": 81107,
    "results_per_page": 20,
    "num_pages": 4056,
    "page_number": 3981,
    "results": [
        {
            "start": 874654512,
            "stop": 874654513
        },
        {
            "start": 874654516,
            "stop": 874654521
        },
        {
            "start": 874654524,
            "stop": 874654525
        },
        {
            "start": 874654528,
            "stop": 874654801
        },
        {
            "start": 874654809,
            "stop": 874654811
        },
        {
            "start": 874654816,
            "stop": 874655582
        },
        {
            "start": 874655586,
            "stop": 874655721
        },
        {
            "start": 874655724,
            "stop": 874656041
        },
        {
            "start": 874656044,
            "stop": 874656938
        },
        {
            "start": 874656941,
            "stop": 874657011
        },
        {
            "start": 874657015,
            "stop": 874657295
        },
        {
            "start": 874657298,
            "stop": 874657789
        },
        {
            "start": 874657792,
            "stop": 874657816
        },
        {
            "start": 874657819,
            "stop": 874658075
        },
        {
            "start": 874658079,
            "stop": 874658175
        },
        {
            "start": 874658179,
            "stop": 874658590
        },
        {
            "start": 874658591,
            "stop": 874658666
        },
        {
            "start": 874658668,
            "stop": 874658693
        },
        {
            "start": 874658695,
            "stop": 874658707
        },
        {
            "start": 874658709,
            "stop": 874658722
        }
    ]
}