Return strain file list.

Query parameters:

  • start: Initial GPS time of the desired GPS interval.
  • stop: Final GPS time of the desired GPS interval.
  • detector: e.g. H1, L1, V1, etc.
  • sample-rate: 4 or 16 [kHz]

Rel URLs:

  • Download hdf5 file format from hdf5_url rel url.
  • Download gwf file format from gwf_url rel url.
  • Follow detail_url for more information of the strain file, including bit sums and strain statistics.
GET /api/v2/events/GW231029_111508/strain-files?format=api
HTTP 200 OK
Allow: GET, HEAD, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "next": null,
    "previous": null,
    "results_count": 2,
    "results_per_page": 20,
    "num_pages": 1,
    "page_number": 1,
    "results": [
        {
            "gps_start": 1382612992,
            "utc_start": "2023-10-29T11:09:34",
            "detector": "L1",
            "sample_rate_kHz": 16,
            "hdf5_url": "https://gwosc.org/archive/data/O4a_16KHZ_R1/1382023168/L-L1_GWOSC_O4a_16KHZ_R1-1382612992-4096.hdf5?format=api",
            "gwf_url": "https://gwosc.org/archive/data/O4a_16KHZ_R1/1382023168/L-L1_GWOSC_O4a_16KHZ_R1-1382612992-4096.gwf?format=api",
            "detail_url": "https://gwosc.org/api/v2/strain-files/L1-1382612992-16kHz?format=api"
        },
        {
            "gps_start": 1382612992,
            "utc_start": "2023-10-29T11:09:34",
            "detector": "L1",
            "sample_rate_kHz": 4,
            "hdf5_url": "https://gwosc.org/archive/data/O4a_4KHZ_R1/1382023168/L-L1_GWOSC_O4a_4KHZ_R1-1382612992-4096.hdf5?format=api",
            "gwf_url": "https://gwosc.org/archive/data/O4a_4KHZ_R1/1382023168/L-L1_GWOSC_O4a_4KHZ_R1-1382612992-4096.gwf?format=api",
            "detail_url": "https://gwosc.org/api/v2/strain-files/L1-1382612992-4kHz?format=api"
        }
    ]
}