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

{
    "next": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=61",
    "previous": "https://gwosc.org/api/v2/runs/O1/timelines/H1_BURST_CAT3/segments?format=api&page=59",
    "results_count": 106837,
    "results_per_page": 20,
    "num_pages": 5342,
    "page_number": 60,
    "results": [
        {
            "start": 1126435126,
            "stop": 1126435424
        },
        {
            "start": 1126435425,
            "stop": 1126435489
        },
        {
            "start": 1126435491,
            "stop": 1126435753
        },
        {
            "start": 1126435754,
            "stop": 1126435992
        },
        {
            "start": 1126435994,
            "stop": 1126435996
        },
        {
            "start": 1126436000,
            "stop": 1126436042
        },
        {
            "start": 1126436043,
            "stop": 1126436365
        },
        {
            "start": 1126436366,
            "stop": 1126436708
        },
        {
            "start": 1126436709,
            "stop": 1126437025
        },
        {
            "start": 1126437027,
            "stop": 1126437316
        },
        {
            "start": 1126437318,
            "stop": 1126437646
        },
        {
            "start": 1126437647,
            "stop": 1126437889
        },
        {
            "start": 1126437896,
            "stop": 1126437991
        },
        {
            "start": 1126437993,
            "stop": 1126438328
        },
        {
            "start": 1126438329,
            "stop": 1126438380
        },
        {
            "start": 1126438381,
            "stop": 1126438685
        },
        {
            "start": 1126438687,
            "stop": 1126438755
        },
        {
            "start": 1126438757,
            "stop": 1126439004
        },
        {
            "start": 1126439006,
            "stop": 1126439338
        },
        {
            "start": 1126439339,
            "stop": 1126439642
        }
    ]
}