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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H2L1/segments?format=api&page=43",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_STOCH_CAT2_H2L1/segments?format=api&page=41",
    "results_count": 21252,
    "results_per_page": 20,
    "num_pages": 1063,
    "page_number": 42,
    "results": [
        {
            "start": 818379292,
            "stop": 818379412
        },
        {
            "start": 818379968,
            "stop": 818380568
        },
        {
            "start": 818380733,
            "stop": 818381633
        },
        {
            "start": 818381784,
            "stop": 818382144
        },
        {
            "start": 818382293,
            "stop": 818382413
        },
        {
            "start": 818382720,
            "stop": 818383380
        },
        {
            "start": 818385709,
            "stop": 818385769
        },
        {
            "start": 818386111,
            "stop": 818387971
        },
        {
            "start": 818388152,
            "stop": 818388752
        },
        {
            "start": 818388932,
            "stop": 818390312
        },
        {
            "start": 818390532,
            "stop": 818391492
        },
        {
            "start": 818391667,
            "stop": 818393407
        },
        {
            "start": 818393572,
            "stop": 818393692
        },
        {
            "start": 818395680,
            "stop": 818396280
        },
        {
            "start": 818396442,
            "stop": 818396682
        },
        {
            "start": 818396865,
            "stop": 818397825
        },
        {
            "start": 818398002,
            "stop": 818398122
        },
        {
            "start": 818398264,
            "stop": 818398444
        },
        {
            "start": 818398673,
            "stop": 818398793
        },
        {
            "start": 818398982,
            "stop": 818399102
        }
    ]
}