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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT2/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_CBCLOW_CAT2/segments?format=api&page=122",
    "results_count": 8308,
    "results_per_page": 20,
    "num_pages": 416,
    "page_number": 123,
    "results": [
        {
            "start": 931660360,
            "stop": 931660362
        },
        {
            "start": 931660368,
            "stop": 931660572
        },
        {
            "start": 931660577,
            "stop": 931660708
        },
        {
            "start": 931660714,
            "stop": 931661693
        },
        {
            "start": 931661701,
            "stop": 931661845
        },
        {
            "start": 931661851,
            "stop": 931662479
        },
        {
            "start": 931662485,
            "stop": 931662677
        },
        {
            "start": 931662683,
            "stop": 931662727
        },
        {
            "start": 931662733,
            "stop": 931662737
        },
        {
            "start": 931662742,
            "stop": 931662762
        },
        {
            "start": 931662767,
            "stop": 931663063
        },
        {
            "start": 931663069,
            "stop": 931663098
        },
        {
            "start": 931663104,
            "stop": 931663106
        },
        {
            "start": 931663124,
            "stop": 931663126
        },
        {
            "start": 931663152,
            "stop": 931663155
        },
        {
            "start": 931663176,
            "stop": 931663188
        },
        {
            "start": 931663209,
            "stop": 931663210
        },
        {
            "start": 931663221,
            "stop": 931663223
        },
        {
            "start": 931663239,
            "stop": 931663241
        },
        {
            "start": 931664128,
            "stop": 931666331
        }
    ]
}