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_CAT2E/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/H1_BURST_CAT2E/segments?format=api&page=124",
    "previous": "https://gwosc.org/api/v2/runs/S5/timelines/H1_BURST_CAT2E/segments?format=api&page=122",
    "results_count": 146533,
    "results_per_page": 20,
    "num_pages": 7327,
    "page_number": 123,
    "results": [
        {
            "start": 829939401,
            "stop": 829942001
        },
        {
            "start": 829942301,
            "stop": 829943488
        },
        {
            "start": 829944194,
            "stop": 829948434
        },
        {
            "start": 829952725,
            "stop": 829952893
        },
        {
            "start": 829952936,
            "stop": 829952937
        },
        {
            "start": 829953004,
            "stop": 829955135
        },
        {
            "start": 829955361,
            "stop": 829956072
        },
        {
            "start": 829956182,
            "stop": 829956651
        },
        {
            "start": 829957511,
            "stop": 829958067
        },
        {
            "start": 829958367,
            "stop": 829981827
        },
        {
            "start": 829984768,
            "stop": 830012453
        },
        {
            "start": 830032423,
            "stop": 830033283
        },
        {
            "start": 830033583,
            "stop": 830035718
        },
        {
            "start": 830036066,
            "stop": 830036641
        },
        {
            "start": 830041350,
            "stop": 830044136
        },
        {
            "start": 830045706,
            "stop": 830057089
        },
        {
            "start": 830057389,
            "stop": 830057972
        },
        {
            "start": 830058272,
            "stop": 830062957
        },
        {
            "start": 830063257,
            "stop": 830096713
        },
        {
            "start": 830100539,
            "stop": 830113129
        }
    ]
}