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/H2_CBCLOW_CAT2/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/H2_CBCLOW_CAT2/segments?format=api&page=101",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_CBCLOW_CAT2/segments?format=api&page=99",
    "results_count": 15160,
    "results_per_page": 20,
    "num_pages": 758,
    "page_number": 100,
    "results": [
        {
            "start": 821477214,
            "stop": 821477298
        },
        {
            "start": 821477301,
            "stop": 821477310
        },
        {
            "start": 821477313,
            "stop": 821477400
        },
        {
            "start": 821477403,
            "stop": 821477409
        },
        {
            "start": 821477412,
            "stop": 821477414
        },
        {
            "start": 821477417,
            "stop": 821477418
        },
        {
            "start": 821477421,
            "stop": 821477428
        },
        {
            "start": 821477431,
            "stop": 821477434
        },
        {
            "start": 821477437,
            "stop": 821477460
        },
        {
            "start": 821479289,
            "stop": 821480168
        },
        {
            "start": 821481175,
            "stop": 821482103
        },
        {
            "start": 821482106,
            "stop": 821482378
        },
        {
            "start": 821482379,
            "stop": 821482403
        },
        {
            "start": 821482404,
            "stop": 821482693
        },
        {
            "start": 821482696,
            "stop": 821482927
        },
        {
            "start": 821482930,
            "stop": 821482995
        },
        {
            "start": 821482998,
            "stop": 821484198
        },
        {
            "start": 821484201,
            "stop": 821484357
        },
        {
            "start": 821484360,
            "stop": 821484692
        },
        {
            "start": 821484695,
            "stop": 821485084
        }
    ]
}