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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=13",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=11",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 12,
    "results": [
        {
            "start": 817080202,
            "stop": 817080470
        },
        {
            "start": 817081349,
            "stop": 817082113
        },
        {
            "start": 817085572,
            "stop": 817088061
        },
        {
            "start": 817088210,
            "stop": 817101397
        },
        {
            "start": 817101400,
            "stop": 817103818
        },
        {
            "start": 817104793,
            "stop": 817107053
        },
        {
            "start": 817108112,
            "stop": 817111760
        },
        {
            "start": 817111763,
            "stop": 817138137
        },
        {
            "start": 817138141,
            "stop": 817150577
        },
        {
            "start": 817150580,
            "stop": 817160023
        },
        {
            "start": 817160026,
            "stop": 817163369
        },
        {
            "start": 817163372,
            "stop": 817172307
        },
        {
            "start": 817172309,
            "stop": 817178287
        },
        {
            "start": 817179724,
            "stop": 817181740
        },
        {
            "start": 817181743,
            "stop": 817193769
        },
        {
            "start": 817193772,
            "stop": 817194199
        },
        {
            "start": 817194202,
            "stop": 817197853
        },
        {
            "start": 817197856,
            "stop": 817214128
        },
        {
            "start": 817214131,
            "stop": 817218352
        },
        {
            "start": 817219167,
            "stop": 817224013
        }
    ]
}