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

{
    "next": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3H/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S6/timelines/H1_BURST_CAT3H/segments?format=api&page=122",
    "results_count": 667528,
    "results_per_page": 20,
    "num_pages": 33377,
    "page_number": 123,
    "results": [
        {
            "start": 931126167,
            "stop": 931126183
        },
        {
            "start": 931126184,
            "stop": 931126210
        },
        {
            "start": 931126211,
            "stop": 931126212
        },
        {
            "start": 931126213,
            "stop": 931126216
        },
        {
            "start": 931126217,
            "stop": 931126220
        },
        {
            "start": 931126221,
            "stop": 931126227
        },
        {
            "start": 931126229,
            "stop": 931126234
        },
        {
            "start": 931126237,
            "stop": 931126239
        },
        {
            "start": 931126244,
            "stop": 931126263
        },
        {
            "start": 931126264,
            "stop": 931126265
        },
        {
            "start": 931126268,
            "stop": 931126270
        },
        {
            "start": 931126271,
            "stop": 931126283
        },
        {
            "start": 931126284,
            "stop": 931126288
        },
        {
            "start": 931127116,
            "stop": 931127126
        },
        {
            "start": 931127127,
            "stop": 931127161
        },
        {
            "start": 931127163,
            "stop": 931127164
        },
        {
            "start": 931127165,
            "stop": 931127167
        },
        {
            "start": 931127169,
            "stop": 931127176
        },
        {
            "start": 931127178,
            "stop": 931127213
        },
        {
            "start": 931127214,
            "stop": 931127219
        }
    ]
}