List available datasets (public discovery — no auth).
GET
/v1/datasets
const url = 'https://api.betflux.ai/v1/datasets';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.betflux.ai/v1/datasetsResponses
Section titled “Responses”Dataset registry summaries: name, human title, leagues, history sensitivity, Parquet content type, and column names.