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

{
    "next": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=6",
    "previous": "https://gwosc.org/api/v2/runs/O4a/timelines/L1_BURST_CAT3/segments?format=api&page=4",
    "results_count": 7535,
    "results_per_page": 20,
    "num_pages": 377,
    "page_number": 5,
    "results": [
        {
            "start": 1369001186,
            "stop": 1369003547
        },
        {
            "start": 1369003551,
            "stop": 1369005098
        },
        {
            "start": 1369005100,
            "stop": 1369008905
        },
        {
            "start": 1369008907,
            "stop": 1369010958
        },
        {
            "start": 1369010960,
            "stop": 1369012998
        },
        {
            "start": 1369012999,
            "stop": 1369014021
        },
        {
            "start": 1369014027,
            "stop": 1369015086
        },
        {
            "start": 1369015088,
            "stop": 1369015982
        },
        {
            "start": 1369015983,
            "stop": 1369017095
        },
        {
            "start": 1369017096,
            "stop": 1369019033
        },
        {
            "start": 1369019034,
            "stop": 1369019481
        },
        {
            "start": 1369036654,
            "stop": 1369036708
        },
        {
            "start": 1369036709,
            "stop": 1369037824
        },
        {
            "start": 1369037826,
            "stop": 1369038962
        },
        {
            "start": 1369038963,
            "stop": 1369040071
        },
        {
            "start": 1369040073,
            "stop": 1369041216
        },
        {
            "start": 1369041218,
            "stop": 1369042338
        },
        {
            "start": 1369042340,
            "stop": 1369043448
        },
        {
            "start": 1369043450,
            "stop": 1369043679
        },
        {
            "start": 1369043682,
            "stop": 1369044542
        }
    ]
}