Skip to contents

Query the GWOSC API v2 `/api/v2/events` endpoint and return a character vector of all known event names (e.g. "GW150914", "GW151226", ...).

Usage

list_gwosc_event(verbose = FALSE)

Arguments

verbose

Logical scalar. If TRUE, print progress messages. Default FALSE.

Value

Character vector of event names.

Details

The function automatically follows pagination (the `next` link in the API response) until all pages are retrieved. It attempts a few Accept header strategies to be robust against GWOSC API variations.

Examples

if (FALSE) { # \dontrun{
events <- list_gwosc_event()
head(events)
} # }