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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=1338",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCHIGH_CAT2/segments?format=api&page=1336",
    "results_count": 28169,
    "results_per_page": 20,
    "num_pages": 1409,
    "page_number": 1337,
    "results": [
        {
            "start": 964819940,
            "stop": 964820479
        },
        {
            "start": 964820480,
            "stop": 964821066
        },
        {
            "start": 964821067,
            "stop": 964821087
        },
        {
            "start": 964821088,
            "stop": 964821252
        },
        {
            "start": 964821253,
            "stop": 964821553
        },
        {
            "start": 964821554,
            "stop": 964821721
        },
        {
            "start": 964821722,
            "stop": 964821770
        },
        {
            "start": 964821771,
            "stop": 964821834
        },
        {
            "start": 964821835,
            "stop": 964822207
        },
        {
            "start": 964822247,
            "stop": 964822722
        },
        {
            "start": 964822723,
            "stop": 964827058
        },
        {
            "start": 964827059,
            "stop": 964829294
        },
        {
            "start": 964829295,
            "stop": 964831988
        },
        {
            "start": 964832034,
            "stop": 964836134
        },
        {
            "start": 964836622,
            "stop": 964843588
        },
        {
            "start": 964843589,
            "stop": 964857576
        },
        {
            "start": 964857577,
            "stop": 964868324
        },
        {
            "start": 964871791,
            "stop": 964872567
        },
        {
            "start": 964872569,
            "stop": 964875378
        },
        {
            "start": 964896252,
            "stop": 964896687
        }
    ]
}