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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3082",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=3080",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 3081,
    "results": [
        {
            "start": 866158024,
            "stop": 866158080
        },
        {
            "start": 866158260,
            "stop": 866158380
        },
        {
            "start": 866158440,
            "stop": 866158461
        },
        {
            "start": 866158466,
            "stop": 866158540
        },
        {
            "start": 866158543,
            "stop": 866158563
        },
        {
            "start": 866158566,
            "stop": 866158920
        },
        {
            "start": 866158980,
            "stop": 866159400
        },
        {
            "start": 866159520,
            "stop": 866159523
        },
        {
            "start": 866159866,
            "stop": 866159901
        },
        {
            "start": 866160201,
            "stop": 866160300
        },
        {
            "start": 866160480,
            "stop": 866160630
        },
        {
            "start": 866160690,
            "stop": 866160695
        },
        {
            "start": 866161140,
            "stop": 866161241
        },
        {
            "start": 866161750,
            "stop": 866161811
        },
        {
            "start": 866161814,
            "stop": 866162160
        },
        {
            "start": 866162220,
            "stop": 866162280
        },
        {
            "start": 866162460,
            "stop": 866162489
        },
        {
            "start": 866162493,
            "stop": 866162520
        },
        {
            "start": 866162580,
            "stop": 866162602
        },
        {
            "start": 866162605,
            "stop": 866162625
        }
    ]
}