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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3001",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=2999",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3000,
    "results": [
        {
            "start": 862313618,
            "stop": 862317660
        },
        {
            "start": 862317720,
            "stop": 862318500
        },
        {
            "start": 862318560,
            "stop": 862318680
        },
        {
            "start": 862319760,
            "stop": 862324663
        },
        {
            "start": 862324971,
            "stop": 862326300
        },
        {
            "start": 862326360,
            "stop": 862328545
        },
        {
            "start": 862328550,
            "stop": 862328580
        },
        {
            "start": 862328640,
            "stop": 862330140
        },
        {
            "start": 862330200,
            "stop": 862330470
        },
        {
            "start": 862330475,
            "stop": 862330500
        },
        {
            "start": 862330560,
            "stop": 862331760
        },
        {
            "start": 862331820,
            "stop": 862332995
        },
        {
            "start": 862333000,
            "stop": 862334520
        },
        {
            "start": 862334580,
            "stop": 862339680
        },
        {
            "start": 862339800,
            "stop": 862343097
        },
        {
            "start": 862343100,
            "stop": 862345980
        },
        {
            "start": 862346100,
            "stop": 862346530
        },
        {
            "start": 862346535,
            "stop": 862347472
        },
        {
            "start": 862347478,
            "stop": 862348580
        },
        {
            "start": 862348585,
            "stop": 862349220
        }
    ]
}