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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=366",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CW_CAT1/segments?format=api&page=364",
    "results_count": 9325,
    "results_per_page": 20,
    "num_pages": 467,
    "page_number": 365,
    "results": [
        {
            "start": 858806781,
            "stop": 858806787
        },
        {
            "start": 858806790,
            "stop": 858806793
        },
        {
            "start": 858806838,
            "stop": 858806849
        },
        {
            "start": 858806857,
            "stop": 858806860
        },
        {
            "start": 858811192,
            "stop": 858811209
        },
        {
            "start": 858811212,
            "stop": 858811238
        },
        {
            "start": 858811242,
            "stop": 858811607
        },
        {
            "start": 858811611,
            "stop": 858811617
        },
        {
            "start": 858811631,
            "stop": 858811632
        },
        {
            "start": 858811645,
            "stop": 858811929
        },
        {
            "start": 858811933,
            "stop": 858812031
        },
        {
            "start": 858812040,
            "stop": 858812146
        },
        {
            "start": 858812149,
            "stop": 858812232
        },
        {
            "start": 858812236,
            "stop": 858812320
        },
        {
            "start": 858812324,
            "stop": 858812555
        },
        {
            "start": 858812559,
            "stop": 858812833
        },
        {
            "start": 858812837,
            "stop": 858812891
        },
        {
            "start": 858812895,
            "stop": 858812901
        },
        {
            "start": 858812914,
            "stop": 858812930
        },
        {
            "start": 858812943,
            "stop": 858813046
        }
    ]
}