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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=33",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/L1_CBCLOW_CAT2/segments?format=api&page=31",
    "results_count": 17965,
    "results_per_page": 20,
    "num_pages": 899,
    "page_number": 32,
    "results": [
        {
            "start": 931501735,
            "stop": 931501751
        },
        {
            "start": 931501767,
            "stop": 931501777
        },
        {
            "start": 931501789,
            "stop": 931501803
        },
        {
            "start": 931501816,
            "stop": 931501820
        },
        {
            "start": 931501827,
            "stop": 931501887
        },
        {
            "start": 931501907,
            "stop": 931501917
        },
        {
            "start": 931501924,
            "stop": 931501932
        },
        {
            "start": 931501939,
            "stop": 931501940
        },
        {
            "start": 931501947,
            "stop": 931501950
        },
        {
            "start": 931501957,
            "stop": 931501958
        },
        {
            "start": 931501965,
            "stop": 931501995
        },
        {
            "start": 931502007,
            "stop": 931502015
        },
        {
            "start": 931502028,
            "stop": 931502031
        },
        {
            "start": 931502037,
            "stop": 931502040
        },
        {
            "start": 931502053,
            "stop": 931502059
        },
        {
            "start": 931502065,
            "stop": 931502083
        },
        {
            "start": 931502090,
            "stop": 931502092
        },
        {
            "start": 931502099,
            "stop": 931502118
        },
        {
            "start": 931502124,
            "stop": 931502136
        },
        {
            "start": 931502143,
            "stop": 931502151
        }
    ]
}