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_CAT3/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/S5/timelines/H2_BURST_CAT3/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H2_BURST_CAT3/segments?format=api&page=122",
    "results_count": 119313,
    "results_per_page": 20,
    "num_pages": 5966,
    "page_number": 123,
    "results": [
        {
            "start": 818967224,
            "stop": 818969158
        },
        {
            "start": 818969558,
            "stop": 818971097
        },
        {
            "start": 818971762,
            "stop": 818972023
        },
        {
            "start": 818972204,
            "stop": 818977123
        },
        {
            "start": 818977304,
            "stop": 818982261
        },
        {
            "start": 818982264,
            "stop": 818987323
        },
        {
            "start": 818987504,
            "stop": 819002197
        },
        {
            "start": 819002201,
            "stop": 819027629
        },
        {
            "start": 819027633,
            "stop": 819027679
        },
        {
            "start": 819041055,
            "stop": 819043382
        },
        {
            "start": 819043782,
            "stop": 819044082
        },
        {
            "start": 819047310,
            "stop": 819050034
        },
        {
            "start": 819051431,
            "stop": 819057815
        },
        {
            "start": 819058808,
            "stop": 819060205
        },
        {
            "start": 819060641,
            "stop": 819066623
        },
        {
            "start": 819067341,
            "stop": 819067531
        },
        {
            "start": 819067935,
            "stop": 819068928
        },
        {
            "start": 819068933,
            "stop": 819071130
        },
        {
            "start": 819071133,
            "stop": 819075473
        },
        {
            "start": 819076022,
            "stop": 819076997
        }
    ]
}