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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=111",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCHIGH_CAT4/segments?format=api&page=109",
    "results_count": 168343,
    "results_per_page": 20,
    "num_pages": 8418,
    "page_number": 110,
    "results": [
        {
            "start": 816943799,
            "stop": 816943811
        },
        {
            "start": 816943897,
            "stop": 816944087
        },
        {
            "start": 816944114,
            "stop": 816944228
        },
        {
            "start": 816944265,
            "stop": 816944290
        },
        {
            "start": 816944316,
            "stop": 816944358
        },
        {
            "start": 816944377,
            "stop": 816944402
        },
        {
            "start": 816944459,
            "stop": 816944517
        },
        {
            "start": 816944547,
            "stop": 816944652
        },
        {
            "start": 816944697,
            "stop": 816944700
        },
        {
            "start": 816944760,
            "stop": 816944765
        },
        {
            "start": 816944854,
            "stop": 816944866
        },
        {
            "start": 816944916,
            "stop": 816944941
        },
        {
            "start": 816944977,
            "stop": 816945000
        },
        {
            "start": 816945024,
            "stop": 816945037
        },
        {
            "start": 816945113,
            "stop": 816945120
        },
        {
            "start": 816945155,
            "stop": 816945160
        },
        {
            "start": 816945206,
            "stop": 816945348
        },
        {
            "start": 816945385,
            "stop": 816945403
        },
        {
            "start": 816945478,
            "stop": 816945491
        },
        {
            "start": 816945519,
            "stop": 816945541
        }
    ]
}