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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2346",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=2344",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 2345,
    "results": [
        {
            "start": 871933279,
            "stop": 871933519
        },
        {
            "start": 871933536,
            "stop": 871933650
        },
        {
            "start": 871934076,
            "stop": 871936072
        },
        {
            "start": 871936089,
            "stop": 871936430
        },
        {
            "start": 871936510,
            "stop": 871936791
        },
        {
            "start": 871936860,
            "stop": 871937990
        },
        {
            "start": 871938084,
            "stop": 871939068
        },
        {
            "start": 871939076,
            "stop": 871939430
        },
        {
            "start": 871939573,
            "stop": 871940519
        },
        {
            "start": 871940536,
            "stop": 871942252
        },
        {
            "start": 871942272,
            "stop": 871942850
        },
        {
            "start": 871942867,
            "stop": 871943605
        },
        {
            "start": 871943616,
            "stop": 871944470
        },
        {
            "start": 871944610,
            "stop": 871945130
        },
        {
            "start": 871945134,
            "stop": 871945421
        },
        {
            "start": 871945457,
            "stop": 871947471
        },
        {
            "start": 871947488,
            "stop": 871948019
        },
        {
            "start": 871948036,
            "stop": 871948550
        },
        {
            "start": 871948630,
            "stop": 871950950
        },
        {
            "start": 871951058,
            "stop": 871958110
        }
    ]
}