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=20
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=21",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=19",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 20,
    "results": [
        {
            "start": 818035322,
            "stop": 818037013
        },
        {
            "start": 818037193,
            "stop": 818059265
        },
        {
            "start": 818060899,
            "stop": 818068453
        },
        {
            "start": 818069157,
            "stop": 818077182
        },
        {
            "start": 818077748,
            "stop": 818093514
        },
        {
            "start": 818094671,
            "stop": 818096053
        },
        {
            "start": 818097973,
            "stop": 818098573
        },
        {
            "start": 818098844,
            "stop": 818112793
        },
        {
            "start": 818120524,
            "stop": 818130342
        },
        {
            "start": 818130581,
            "stop": 818145065
        },
        {
            "start": 818146101,
            "stop": 818161393
        },
        {
            "start": 818164648,
            "stop": 818172826
        },
        {
            "start": 818174757,
            "stop": 818180053
        },
        {
            "start": 818181463,
            "stop": 818182033
        },
        {
            "start": 818188726,
            "stop": 818206514
        },
        {
            "start": 818207218,
            "stop": 818227407
        },
        {
            "start": 818227489,
            "stop": 818238896
        },
        {
            "start": 818244105,
            "stop": 818261473
        },
        {
            "start": 818263897,
            "stop": 818267523
        },
        {
            "start": 818270274,
            "stop": 818286896
        }
    ]
}