JSON Schema of a dataset's row shape (public discovery — no auth).
GET
/v1/datasets/{name}/schema
const url = 'https://api.betflux.ai/v1/datasets/example/schema';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/datasets/example/schemaParameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”name
required
Dataset name from /v1/datasets.
string
Dataset name from /v1/datasets.
Responses
Section titled “Responses”The dataset’s row schema as JSON Schema.
No dataset with that name.
Media typeapplication/problem+json
RFC 9457 problem details. Dispatch on the stable type URI (https://api.betflux.ai/problems/*), never on the English title.
object
type
required
Stable problem type URI.
string
title
required
Short human-readable summary.
string
status
required
HTTP status code.
integer
detail
Explanation specific to this occurrence.
string
Examplegenerated
{ "type": "example", "title": "example", "status": 1, "detail": "example"}