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=10
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=11",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT1/segments?format=api&page=9",
    "results_count": 6969,
    "results_per_page": 20,
    "num_pages": 349,
    "page_number": 10,
    "results": [
        {
            "start": 816776409,
            "stop": 816776410
        },
        {
            "start": 816776414,
            "stop": 816776420
        },
        {
            "start": 816777770,
            "stop": 816777779
        },
        {
            "start": 816778075,
            "stop": 816778079
        },
        {
            "start": 816778348,
            "stop": 816783709
        },
        {
            "start": 816783712,
            "stop": 816793051
        },
        {
            "start": 816793105,
            "stop": 816807208
        },
        {
            "start": 816812488,
            "stop": 816814171
        },
        {
            "start": 816816157,
            "stop": 816818400
        },
        {
            "start": 816819345,
            "stop": 816823607
        },
        {
            "start": 816825229,
            "stop": 816858420
        },
        {
            "start": 816858423,
            "stop": 816865173
        },
        {
            "start": 816866663,
            "stop": 816868982
        },
        {
            "start": 816869713,
            "stop": 816892478
        },
        {
            "start": 816892479,
            "stop": 816893008
        },
        {
            "start": 816894486,
            "stop": 816897650
        },
        {
            "start": 816898945,
            "stop": 816901156
        },
        {
            "start": 816901158,
            "stop": 816901510
        },
        {
            "start": 816901601,
            "stop": 816908911
        },
        {
            "start": 816909479,
            "stop": 816913994
        }
    ]
}