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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=100",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 101,
    "results": [
        {
            "start": 827812416,
            "stop": 827812736
        },
        {
            "start": 827812832,
            "stop": 827812992
        },
        {
            "start": 827813024,
            "stop": 827813280
        },
        {
            "start": 827813344,
            "stop": 827813376
        },
        {
            "start": 827813408,
            "stop": 827813728
        },
        {
            "start": 827814176,
            "stop": 827814336
        },
        {
            "start": 827825888,
            "stop": 827828544
        },
        {
            "start": 827828576,
            "stop": 827832000
        },
        {
            "start": 827832032,
            "stop": 827840448
        },
        {
            "start": 827840480,
            "stop": 827847292
        },
        {
            "start": 827847599,
            "stop": 827849470
        },
        {
            "start": 827853949,
            "stop": 827854016
        },
        {
            "start": 827854048,
            "stop": 827857474
        },
        {
            "start": 827857475,
            "stop": 827858632
        },
        {
            "start": 827858633,
            "stop": 827859493
        },
        {
            "start": 827859531,
            "stop": 827859532
        },
        {
            "start": 827859695,
            "stop": 827861696
        },
        {
            "start": 827861697,
            "stop": 827862553
        },
        {
            "start": 827862651,
            "stop": 827864832
        },
        {
            "start": 827864864,
            "stop": 827865433
        }
    ]
}