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=2995
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=2996",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT3/segments?format=api&page=2994",
    "results_count": 66335,
    "results_per_page": 20,
    "num_pages": 3317,
    "page_number": 2995,
    "results": [
        {
            "start": 862186718,
            "stop": 862187280
        },
        {
            "start": 862188193,
            "stop": 862188780
        },
        {
            "start": 862188840,
            "stop": 862188960
        },
        {
            "start": 862189140,
            "stop": 862189680
        },
        {
            "start": 862189740,
            "stop": 862189807
        },
        {
            "start": 862189816,
            "stop": 862189830
        },
        {
            "start": 862189950,
            "stop": 862190621
        },
        {
            "start": 862190624,
            "stop": 862190760
        },
        {
            "start": 862190820,
            "stop": 862191176
        },
        {
            "start": 862191240,
            "stop": 862191255
        },
        {
            "start": 862191264,
            "stop": 862191420
        },
        {
            "start": 862191480,
            "stop": 862191630
        },
        {
            "start": 862191720,
            "stop": 862191955
        },
        {
            "start": 862191959,
            "stop": 862191960
        },
        {
            "start": 862192020,
            "stop": 862192080
        },
        {
            "start": 862192140,
            "stop": 862192200
        },
        {
            "start": 862192260,
            "stop": 862192331
        },
        {
            "start": 862192340,
            "stop": 862192408
        },
        {
            "start": 862192417,
            "stop": 862192552
        },
        {
            "start": 862192555,
            "stop": 862193166
        }
    ]
}