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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT3/segments?format=api&page=99",
    "results_count": 97650,
    "results_per_page": 20,
    "num_pages": 4883,
    "page_number": 100,
    "results": [
        {
            "start": 932375276,
            "stop": 932375409
        },
        {
            "start": 932375428,
            "stop": 932375801
        },
        {
            "start": 932375820,
            "stop": 932375915
        },
        {
            "start": 932375940,
            "stop": 932375984
        },
        {
            "start": 932376003,
            "stop": 932376074
        },
        {
            "start": 932376093,
            "stop": 932376565
        },
        {
            "start": 932376584,
            "stop": 932376682
        },
        {
            "start": 932376701,
            "stop": 932376753
        },
        {
            "start": 932376772,
            "stop": 932377290
        },
        {
            "start": 932377309,
            "stop": 932378921
        },
        {
            "start": 932378926,
            "stop": 932381300
        },
        {
            "start": 932381305,
            "stop": 932381337
        },
        {
            "start": 932381342,
            "stop": 932381439
        },
        {
            "start": 932381461,
            "stop": 932381465
        },
        {
            "start": 932381470,
            "stop": 932381506
        },
        {
            "start": 932381512,
            "stop": 932381688
        },
        {
            "start": 932381707,
            "stop": 932381788
        },
        {
            "start": 932381807,
            "stop": 932381840
        },
        {
            "start": 932381862,
            "stop": 932382241
        },
        {
            "start": 932382246,
            "stop": 932382315
        }
    ]
}