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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5679",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=5677",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 5678,
    "results": [
        {
            "start": 874556290,
            "stop": 874556304
        },
        {
            "start": 874556307,
            "stop": 874556336
        },
        {
            "start": 874556340,
            "stop": 874556437
        },
        {
            "start": 874556440,
            "stop": 874556467
        },
        {
            "start": 874556472,
            "stop": 874556492
        },
        {
            "start": 874556495,
            "stop": 874556521
        },
        {
            "start": 874556524,
            "stop": 874556590
        },
        {
            "start": 874556594,
            "stop": 874556642
        },
        {
            "start": 874556649,
            "stop": 874556693
        },
        {
            "start": 874556696,
            "stop": 874556714
        },
        {
            "start": 874556717,
            "stop": 874556725
        },
        {
            "start": 874556728,
            "stop": 874556733
        },
        {
            "start": 874556736,
            "stop": 874556791
        },
        {
            "start": 874556794,
            "stop": 874556807
        },
        {
            "start": 874556810,
            "stop": 874556854
        },
        {
            "start": 874556857,
            "stop": 874556868
        },
        {
            "start": 874556871,
            "stop": 874556905
        },
        {
            "start": 874556908,
            "stop": 874556938
        },
        {
            "start": 874556941,
            "stop": 874556964
        },
        {
            "start": 874556967,
            "stop": 874556987
        }
    ]
}