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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5654",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5652",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 5653,
    "results": [
        {
            "start": 874521717,
            "stop": 874521739
        },
        {
            "start": 874521743,
            "stop": 874521756
        },
        {
            "start": 874521762,
            "stop": 874521790
        },
        {
            "start": 874521797,
            "stop": 874521806
        },
        {
            "start": 874521809,
            "stop": 874521812
        },
        {
            "start": 874521815,
            "stop": 874521873
        },
        {
            "start": 874521879,
            "stop": 874521901
        },
        {
            "start": 874521904,
            "stop": 874521931
        },
        {
            "start": 874521935,
            "stop": 874521944
        },
        {
            "start": 874521947,
            "stop": 874521954
        },
        {
            "start": 874521960,
            "stop": 874521961
        },
        {
            "start": 874521965,
            "stop": 874521973
        },
        {
            "start": 874521976,
            "stop": 874521979
        },
        {
            "start": 874521982,
            "stop": 874521997
        },
        {
            "start": 874522000,
            "stop": 874522049
        },
        {
            "start": 874522054,
            "stop": 874522074
        },
        {
            "start": 874522080,
            "stop": 874522084
        },
        {
            "start": 874522087,
            "stop": 874522132
        },
        {
            "start": 874522136,
            "stop": 874522148
        },
        {
            "start": 874522156,
            "stop": 874522190
        }
    ]
}