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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=65",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_CBCLOW_CAT3/segments?format=api&page=63",
    "results_count": 49802,
    "results_per_page": 20,
    "num_pages": 2491,
    "page_number": 64,
    "results": [
        {
            "start": 817708634,
            "stop": 817714726
        },
        {
            "start": 817723423,
            "stop": 817730666
        },
        {
            "start": 817730835,
            "stop": 817736341
        },
        {
            "start": 817736348,
            "stop": 817736820
        },
        {
            "start": 817736880,
            "stop": 817747877
        },
        {
            "start": 817747881,
            "stop": 817753213
        },
        {
            "start": 817753252,
            "stop": 817753253
        },
        {
            "start": 817757865,
            "stop": 817758763
        },
        {
            "start": 817758944,
            "stop": 817764673
        },
        {
            "start": 817765466,
            "stop": 817766187
        },
        {
            "start": 817768021,
            "stop": 817770791
        },
        {
            "start": 817774855,
            "stop": 817774995
        },
        {
            "start": 817775003,
            "stop": 817775019
        },
        {
            "start": 817775026,
            "stop": 817779550
        },
        {
            "start": 817779554,
            "stop": 817781831
        },
        {
            "start": 817783810,
            "stop": 817813437
        },
        {
            "start": 817813444,
            "stop": 817821553
        },
        {
            "start": 817821601,
            "stop": 817821602
        },
        {
            "start": 817822627,
            "stop": 817824113
        },
        {
            "start": 817824119,
            "stop": 817824433
        }
    ]
}