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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=3601",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3/segments?format=api&page=3599",
    "results_count": 75537,
    "results_per_page": 20,
    "num_pages": 3777,
    "page_number": 3600,
    "results": [
        {
            "start": 970425847,
            "stop": 970425861
        },
        {
            "start": 970425867,
            "stop": 970425873
        },
        {
            "start": 970425876,
            "stop": 970425905
        },
        {
            "start": 970425908,
            "stop": 970425909
        },
        {
            "start": 970425913,
            "stop": 970425935
        },
        {
            "start": 970425941,
            "stop": 970425970
        },
        {
            "start": 970425976,
            "stop": 970425985
        },
        {
            "start": 970425988,
            "stop": 970426006
        },
        {
            "start": 970426009,
            "stop": 970426034
        },
        {
            "start": 970426037,
            "stop": 970426044
        },
        {
            "start": 970426049,
            "stop": 970426051
        },
        {
            "start": 970426054,
            "stop": 970426061
        },
        {
            "start": 970426064,
            "stop": 970426066
        },
        {
            "start": 970426073,
            "stop": 970426084
        },
        {
            "start": 970426087,
            "stop": 970426106
        },
        {
            "start": 970426109,
            "stop": 970426112
        },
        {
            "start": 970426115,
            "stop": 970426135
        },
        {
            "start": 970426138,
            "stop": 970426140
        },
        {
            "start": 970426143,
            "stop": 970426165
        },
        {
            "start": 970426168,
            "stop": 970426169
        }
    ]
}