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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=457",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=455",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 456,
    "results": [
        {
            "start": 827403913,
            "stop": 827409185
        },
        {
            "start": 827409945,
            "stop": 827415584
        },
        {
            "start": 827415765,
            "stop": 827422790
        },
        {
            "start": 827422870,
            "stop": 827428542
        },
        {
            "start": 827429996,
            "stop": 827434199
        },
        {
            "start": 827434206,
            "stop": 827435169
        },
        {
            "start": 827435176,
            "stop": 827439880
        },
        {
            "start": 827439890,
            "stop": 827442221
        },
        {
            "start": 827442229,
            "stop": 827442290
        },
        {
            "start": 827442297,
            "stop": 827446130
        },
        {
            "start": 827446210,
            "stop": 827447828
        },
        {
            "start": 827447858,
            "stop": 827450870
        },
        {
            "start": 827450950,
            "stop": 827458084
        },
        {
            "start": 827458113,
            "stop": 827459040
        },
        {
            "start": 827459100,
            "stop": 827460240
        },
        {
            "start": 827460269,
            "stop": 827462037
        },
        {
            "start": 827462200,
            "stop": 827463775
        },
        {
            "start": 827463782,
            "stop": 827463787
        },
        {
            "start": 827463796,
            "stop": 827465089
        },
        {
            "start": 827465278,
            "stop": 827466458
        }
    ]
}