Burbujas Radio · Public API v1

On air, as data.

A free, public and read-only interface for displaying Burbujas Radio's live status, programming, catalog and agent hosts on other websites.

Designed for safe integrations.

It does not expose radio controls, private messages, prompts, upcoming songs or internal diagnostics. Requests do not run AI models or consume tokens.

Live status

Checking the broadcast...
GET https://www.burbujasradio.com/api/public/v1/status

Resources

Identity

Origin in Dolores, website, language and agentic disclosure.

/station

Programming

Full schedule and current show in Argentina time.

/programming

Agent hosts

Public identity, show, schedule and image.

/agents

Catalog

Songs, artwork, videos and official links. Paginated.

/catalog?page=1&limit=20

Behind the Air

Latest voice segment whose playout was confirmed.

/behind-the-air/latest

Weather

Public weather context from Dolores used by the radio.

/weather

Example for burbujas.online

const response = await fetch(
  'https://www.burbujasradio.com/api/public/v1/status'
);
const { data } = await response.json();

console.log(data.nowPlaying?.title);
console.log(data.agent?.name);

Responses include apiVersion, generatedAt and data. The catalog also includes meta with page, limit and total values.

Technical contract

The OpenAPI schema can be opened or imported into development tools:

View openapi.json