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=50
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=51",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=49",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 50,
    "results": [
        {
            "start": 822339353,
            "stop": 822339642
        },
        {
            "start": 822339688,
            "stop": 822339899
        },
        {
            "start": 822339943,
            "stop": 822340102
        },
        {
            "start": 822347137,
            "stop": 822347814
        },
        {
            "start": 822347985,
            "stop": 822350928
        },
        {
            "start": 822351001,
            "stop": 822351726
        },
        {
            "start": 822351875,
            "stop": 822351966
        },
        {
            "start": 822352040,
            "stop": 822352981
        },
        {
            "start": 822354283,
            "stop": 822357606
        },
        {
            "start": 822358351,
            "stop": 822361482
        },
        {
            "start": 822361555,
            "stop": 822366348
        },
        {
            "start": 822366444,
            "stop": 822368621
        },
        {
            "start": 822368823,
            "stop": 822371361
        },
        {
            "start": 822371496,
            "stop": 822375659
        },
        {
            "start": 822376169,
            "stop": 822379677
        },
        {
            "start": 822379754,
            "stop": 822380113
        },
        {
            "start": 822380196,
            "stop": 822380211
        },
        {
            "start": 822380258,
            "stop": 822382760
        },
        {
            "start": 822382820,
            "stop": 822382849
        },
        {
            "start": 822383279,
            "stop": 822385772
        }
    ]
}