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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT1/segments?format=api&page=201",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT1/segments?format=api&page=199",
    "results_count": 199755,
    "results_per_page": 20,
    "num_pages": 9988,
    "page_number": 200,
    "results": [
        {
            "start": 816854237,
            "stop": 816854239
        },
        {
            "start": 816854250,
            "stop": 816854252
        },
        {
            "start": 816854257,
            "stop": 816854316
        },
        {
            "start": 816854321,
            "stop": 816854342
        },
        {
            "start": 816854345,
            "stop": 816854348
        },
        {
            "start": 816854360,
            "stop": 816854361
        },
        {
            "start": 816854367,
            "stop": 816854382
        },
        {
            "start": 816854385,
            "stop": 816854408
        },
        {
            "start": 816854413,
            "stop": 816854424
        },
        {
            "start": 816854428,
            "stop": 816854430
        },
        {
            "start": 816854435,
            "stop": 816854436
        },
        {
            "start": 816854449,
            "stop": 816854450
        },
        {
            "start": 816854462,
            "stop": 816854463
        },
        {
            "start": 816854469,
            "stop": 816854472
        },
        {
            "start": 816854478,
            "stop": 816854487
        },
        {
            "start": 816854490,
            "stop": 816854578
        },
        {
            "start": 816854582,
            "stop": 816854585
        },
        {
            "start": 816854597,
            "stop": 816854598
        },
        {
            "start": 816854603,
            "stop": 816854604
        },
        {
            "start": 816854610,
            "stop": 816854611
        }
    ]
}