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

{
    "next": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=102",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT2E/segments?format=api&page=100",
    "results_count": 133929,
    "results_per_page": 20,
    "num_pages": 6697,
    "page_number": 101,
    "results": [
        {
            "start": 821439019,
            "stop": 821439127
        },
        {
            "start": 821439130,
            "stop": 821439197
        },
        {
            "start": 821439200,
            "stop": 821439296
        },
        {
            "start": 821439299,
            "stop": 821439417
        },
        {
            "start": 821439420,
            "stop": 821439907
        },
        {
            "start": 821439910,
            "stop": 821439946
        },
        {
            "start": 821439949,
            "stop": 821440060
        },
        {
            "start": 821440063,
            "stop": 821440082
        },
        {
            "start": 821440085,
            "stop": 821440179
        },
        {
            "start": 821440182,
            "stop": 821440203
        },
        {
            "start": 821440206,
            "stop": 821440267
        },
        {
            "start": 821440270,
            "stop": 821440274
        },
        {
            "start": 821440277,
            "stop": 821440337
        },
        {
            "start": 821440342,
            "stop": 821440442
        },
        {
            "start": 821440445,
            "stop": 821440473
        },
        {
            "start": 821440476,
            "stop": 821440535
        },
        {
            "start": 821440538,
            "stop": 821440589
        },
        {
            "start": 821440592,
            "stop": 821440598
        },
        {
            "start": 821440601,
            "stop": 821440668
        },
        {
            "start": 821440671,
            "stop": 821440750
        }
    ]
}