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

{
    "next": "https://gwosc.org/api/v2/runs/O3a/timelines/H1_BURST_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/O3a/timelines/H1_BURST_CAT3/segments?format=api&page=99",
    "results_count": 40052,
    "results_per_page": 20,
    "num_pages": 2003,
    "page_number": 100,
    "results": [
        {
            "start": 1239196874,
            "stop": 1239196875
        },
        {
            "start": 1239196876,
            "stop": 1239197461
        },
        {
            "start": 1239197464,
            "stop": 1239197901
        },
        {
            "start": 1239197904,
            "stop": 1239198261
        },
        {
            "start": 1239198264,
            "stop": 1239198729
        },
        {
            "start": 1239198732,
            "stop": 1239199170
        },
        {
            "start": 1239199173,
            "stop": 1239199555
        },
        {
            "start": 1239199557,
            "stop": 1239199678
        },
        {
            "start": 1239199681,
            "stop": 1239200441
        },
        {
            "start": 1239200442,
            "stop": 1239200779
        },
        {
            "start": 1239200782,
            "stop": 1239200902
        },
        {
            "start": 1239200905,
            "stop": 1239201390
        },
        {
            "start": 1239201471,
            "stop": 1239202064
        },
        {
            "start": 1239202065,
            "stop": 1239202907
        },
        {
            "start": 1239202910,
            "stop": 1239203592
        },
        {
            "start": 1239203595,
            "stop": 1239204939
        },
        {
            "start": 1239204940,
            "stop": 1239205261
        },
        {
            "start": 1239205264,
            "stop": 1239205701
        },
        {
            "start": 1239205704,
            "stop": 1239206605
        },
        {
            "start": 1239206608,
            "stop": 1239206656
        }
    ]
}