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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10016",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=10014",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 10015,
    "results": [
        {
            "start": 872319777,
            "stop": 872320191
        },
        {
            "start": 872320207,
            "stop": 872320495
        },
        {
            "start": 872320674,
            "stop": 872320699
        },
        {
            "start": 872320735,
            "stop": 872322334
        },
        {
            "start": 872322351,
            "stop": 872322499
        },
        {
            "start": 872322535,
            "stop": 872322541
        },
        {
            "start": 872322684,
            "stop": 872322687
        },
        {
            "start": 872322767,
            "stop": 872322901
        },
        {
            "start": 872322937,
            "stop": 872323127
        },
        {
            "start": 872323163,
            "stop": 872323171
        },
        {
            "start": 872323207,
            "stop": 872323567
        },
        {
            "start": 872323620,
            "stop": 872323711
        },
        {
            "start": 872323754,
            "stop": 872323905
        },
        {
            "start": 872323941,
            "stop": 872324198
        },
        {
            "start": 872324234,
            "stop": 872324322
        },
        {
            "start": 872324385,
            "stop": 872324437
        },
        {
            "start": 872324495,
            "stop": 872324505
        },
        {
            "start": 872324541,
            "stop": 872324564
        },
        {
            "start": 872324633,
            "stop": 872324684
        },
        {
            "start": 872324718,
            "stop": 872324850
        }
    ]
}