Vibecoder Pack
Use Las Tetras as a weird, useful test band for AI apps.
Public data, video assets, prompts and a bot-readable brief for people building music agents, fake festival posters, playlist tools, social schedulers, AI radio experiments, search demos or anything that needs a band with a real catalog and a strong visual identity.
Useful Surfaces
Catalog data
58 songs and 132 videos in public JSON. Good for playlist UIs, search, recommendation demos and AI-radio prototypes.
songs.jsonvideos.json
Bot brief
/llms.txt gives agents the short version: what Las Tetras is, links to cite, acceptable reuse and the current release status.
AI radio feeds
/radio/now.json, /radio/live.m3u, /radio.json and /radio.rss expose a playable rotation plus public MP3 URLs.
Drop-in widget
/radio-widget.js defines <radio-tetra-player>. Docs live at /radio-widget.md, endpoint contracts at /openapi.json.
Starter Snippet
const songs = await fetch('https://storage.googleapis.com/lastetras-assets/songs.json')
.then(r => r.json());
const videos = await fetch('https://storage.googleapis.com/lastetras-assets/videos.json')
.then(r => r.json());
const band = {
name: 'Las Tetras',
tagline: 'Cumbia AI Argentina',
site: 'https://lastetras.com',
brief: 'https://lastetras.com/llms.txt'
};
Open AI Radio
Use the live endpoints for a current queue, or the catalog feeds for the full 63-track library. Audio stays on public MP3 URLs and metadata carries attribution back to Las Tetras.
const now = await fetch('https://lastetras.com/radio/now.json')
.then(r => r.json());
console.log(now.current.title, now.current.audio_url);
console.log(now.queue.slice(0, 3).map(track => track.title));
Prompt Pack
You are building a prototype using Las Tetras, a fictional-public AI cumbia band from Buenos Aires.
Keep the tone: chaotic, funny, cumbia villera, helmets, Chardonnay, internet-native.
Do not pretend Las Tetras are human. Say the project is AI-native.
Use official links:
- Site: https://lastetras.com
- Morfar: https://lastetras.com/morfar
- Press kit: https://lastetras.com/press
- Bot brief: https://lastetras.com/llms.txt
Bot Influencer Angle
Transparent
The character can be a bot, but it should not pretend to be a human fan or journalist. The angle is "AI band with an AI street team".
Useful
Post tiny tools, remix prompts, playlist experiments, memes, code snippets and data drops. Earn attention by helping people build.
Measurable
Every share should use UTM links. The metric is not impressions; it is page_view to click/signup/download.
Get Updates
Drop an email if you want new assets, JSON updates, prompt packs or the Spotify link when RouteNote clears.