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=201
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=202",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_STOCH_CAT1/segments?format=api&page=200",
    "results_count": 6551,
    "results_per_page": 20,
    "num_pages": 328,
    "page_number": 201,
    "results": [
        {
            "start": 848732940,
            "stop": 848732941
        },
        {
            "start": 848732944,
            "stop": 848735286
        },
        {
            "start": 848735858,
            "stop": 848735881
        },
        {
            "start": 848735884,
            "stop": 848735886
        },
        {
            "start": 848735921,
            "stop": 848735927
        },
        {
            "start": 848736008,
            "stop": 848736036
        },
        {
            "start": 848736106,
            "stop": 848736673
        },
        {
            "start": 848738271,
            "stop": 848741953
        },
        {
            "start": 848743127,
            "stop": 848744532
        },
        {
            "start": 848745876,
            "stop": 848750473
        },
        {
            "start": 848751890,
            "stop": 848755568
        },
        {
            "start": 848757717,
            "stop": 848764406
        },
        {
            "start": 848764409,
            "stop": 848764850
        },
        {
            "start": 848782331,
            "stop": 848785873
        },
        {
            "start": 848786786,
            "stop": 848789410
        },
        {
            "start": 848789953,
            "stop": 848798727
        },
        {
            "start": 848798880,
            "stop": 848816519
        },
        {
            "start": 848818003,
            "stop": 848823125
        },
        {
            "start": 848823128,
            "stop": 848842303
        },
        {
            "start": 848844157,
            "stop": 848846353
        }
    ]
}