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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=21",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=19",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 20,
    "results": [
        {
            "start": 818077748,
            "stop": 818093514
        },
        {
            "start": 818094671,
            "stop": 818096058
        },
        {
            "start": 818097973,
            "stop": 818098616
        },
        {
            "start": 818098618,
            "stop": 818098619
        },
        {
            "start": 818098844,
            "stop": 818112812
        },
        {
            "start": 818120524,
            "stop": 818130342
        },
        {
            "start": 818130581,
            "stop": 818145065
        },
        {
            "start": 818146101,
            "stop": 818160993
        },
        {
            "start": 818161103,
            "stop": 818161135
        },
        {
            "start": 818164648,
            "stop": 818172826
        },
        {
            "start": 818174757,
            "stop": 818180076
        },
        {
            "start": 818181463,
            "stop": 818182068
        },
        {
            "start": 818188726,
            "stop": 818206514
        },
        {
            "start": 818207218,
            "stop": 818227407
        },
        {
            "start": 818227489,
            "stop": 818238896
        },
        {
            "start": 818244105,
            "stop": 818261492
        },
        {
            "start": 818263897,
            "stop": 818267523
        },
        {
            "start": 818270274,
            "stop": 818286896
        },
        {
            "start": 818290241,
            "stop": 818291438
        },
        {
            "start": 818292646,
            "stop": 818322361
        }
    ]
}