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_CBCLOW_CAT4/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/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/L1_CBCLOW_CAT4/segments?format=api&page=99",
    "results_count": 206094,
    "results_per_page": 20,
    "num_pages": 10305,
    "page_number": 100,
    "results": [
        {
            "start": 816683734,
            "stop": 816683737
        },
        {
            "start": 816683742,
            "stop": 816683887
        },
        {
            "start": 816683890,
            "stop": 816683895
        },
        {
            "start": 816683901,
            "stop": 816683949
        },
        {
            "start": 816683952,
            "stop": 816684045
        },
        {
            "start": 816684053,
            "stop": 816684082
        },
        {
            "start": 816684087,
            "stop": 816684208
        },
        {
            "start": 816684237,
            "stop": 816684535
        },
        {
            "start": 816684565,
            "stop": 816684740
        },
        {
            "start": 816684777,
            "stop": 816684853
        },
        {
            "start": 816684860,
            "stop": 816685009
        },
        {
            "start": 816685038,
            "stop": 816685062
        },
        {
            "start": 816685071,
            "stop": 816685220
        },
        {
            "start": 816685224,
            "stop": 816685272
        },
        {
            "start": 816685276,
            "stop": 816685325
        },
        {
            "start": 816685381,
            "stop": 816685635
        },
        {
            "start": 816685642,
            "stop": 816685662
        },
        {
            "start": 816685669,
            "stop": 816685739
        },
        {
            "start": 816685747,
            "stop": 816685761
        },
        {
            "start": 816685798,
            "stop": 816685828
        }
    ]
}