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_STOCH_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_STOCH_CAT1/segments?format=api&page=11",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_STOCH_CAT1/segments?format=api&page=9",
    "results_count": 30795,
    "results_per_page": 20,
    "num_pages": 1540,
    "page_number": 10,
    "results": [
        {
            "start": 816778075,
            "stop": 816778079
        },
        {
            "start": 816778348,
            "stop": 816783709
        },
        {
            "start": 816783712,
            "stop": 816793051
        },
        {
            "start": 816793105,
            "stop": 816807193
        },
        {
            "start": 816812488,
            "stop": 816814153
        },
        {
            "start": 816816157,
            "stop": 816818400
        },
        {
            "start": 816819345,
            "stop": 816823607
        },
        {
            "start": 816825229,
            "stop": 816858420
        },
        {
            "start": 816858423,
            "stop": 816865153
        },
        {
            "start": 816866663,
            "stop": 816868982
        },
        {
            "start": 816869713,
            "stop": 816892476
        },
        {
            "start": 816894486,
            "stop": 816897913
        },
        {
            "start": 816898945,
            "stop": 816901155
        },
        {
            "start": 816901601,
            "stop": 816908893
        },
        {
            "start": 816909479,
            "stop": 816913993
        },
        {
            "start": 816915659,
            "stop": 816922487
        },
        {
            "start": 816923281,
            "stop": 816926352
        },
        {
            "start": 816926355,
            "stop": 816929067
        },
        {
            "start": 816929069,
            "stop": 816946933
        },
        {
            "start": 816948519,
            "stop": 816951343
        }
    ]
}