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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=151",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CW_CAT1/segments?format=api&page=149",
    "results_count": 7594,
    "results_per_page": 20,
    "num_pages": 380,
    "page_number": 150,
    "results": [
        {
            "start": 836154540,
            "stop": 836155933
        },
        {
            "start": 836155978,
            "stop": 836155979
        },
        {
            "start": 836156070,
            "stop": 836165053
        },
        {
            "start": 836165077,
            "stop": 836165078
        },
        {
            "start": 836165901,
            "stop": 836197033
        },
        {
            "start": 836200088,
            "stop": 836203153
        },
        {
            "start": 836203177,
            "stop": 836203178
        },
        {
            "start": 836204448,
            "stop": 836220553
        },
        {
            "start": 836220559,
            "stop": 836220560
        },
        {
            "start": 836221241,
            "stop": 836228533
        },
        {
            "start": 836228541,
            "stop": 836228543
        },
        {
            "start": 836228989,
            "stop": 836233565
        },
        {
            "start": 836233705,
            "stop": 836233753
        },
        {
            "start": 836238447,
            "stop": 836238613
        },
        {
            "start": 836238646,
            "stop": 836238647
        },
        {
            "start": 836238862,
            "stop": 836239089
        },
        {
            "start": 836239452,
            "stop": 836241970
        },
        {
            "start": 836242213,
            "stop": 836258653
        },
        {
            "start": 836258677,
            "stop": 836258679
        },
        {
            "start": 836258852,
            "stop": 836259613
        }
    ]
}