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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=149",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 150,
    "results": [
        {
            "start": 816846485,
            "stop": 816846486
        },
        {
            "start": 816846491,
            "stop": 816846493
        },
        {
            "start": 816846505,
            "stop": 816846513
        },
        {
            "start": 816846526,
            "stop": 816846527
        },
        {
            "start": 816846532,
            "stop": 816846570
        },
        {
            "start": 816846576,
            "stop": 816846579
        },
        {
            "start": 816846589,
            "stop": 816846591
        },
        {
            "start": 816846596,
            "stop": 816846652
        },
        {
            "start": 816846656,
            "stop": 816846659
        },
        {
            "start": 816846664,
            "stop": 816846667
        },
        {
            "start": 816846671,
            "stop": 816846675
        },
        {
            "start": 816846679,
            "stop": 816846693
        },
        {
            "start": 816846699,
            "stop": 816846703
        },
        {
            "start": 816846708,
            "stop": 816846736
        },
        {
            "start": 816846742,
            "stop": 816846800
        },
        {
            "start": 816846807,
            "stop": 816846819
        },
        {
            "start": 816846828,
            "stop": 816846881
        },
        {
            "start": 816846886,
            "stop": 816846917
        },
        {
            "start": 816846922,
            "stop": 816846929
        },
        {
            "start": 816846943,
            "stop": 816846944
        }
    ]
}