The Brainrot almanac
This API exposes "brainrot" resources using only GET
Users can:
Note: Some fields such as lyrics, history or personality contain long text.
GET https://the-brainrots-almanac/api/brainrots You can filter results with parameters in the URL:
Refers to the object's slug.
GET /api/brainrots?name=bambini-crostini Refers to the data.key property.
GET /api/brainrots?key=20 GET /api/brainrots?name=fluri-frulla&key=4 GET https://the-brainrots-almanac/api/brainrots GET https://the-brainrots-almanac/api/brainrots/bambini-crostini
// By slug
fetch('https://the-brainrots-almanac/api/brainrots?name=bambini-crostini')
.then(r => r.json())
.then(data => console.log(data));
// By key
fetch('https://the-brainrots-almanac/api/brainrots?key=20')
.then(r => r.json())
.then(data => console.log(data)); GET https://the-brainrots-almanac/api/brainrots?name=trulimero-trulichina
[
{
"id": 34,
"key": "19",
"slug": "trulimero-trulichina",
"name": "Trulimero Trulichina",
"image": "https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRaBDNXErf-wPmjYQwq0cG9OvkiXMmK1q5fSg&s",
"video": "https://kblrqzpdharaxwokgwqm.supabase.co/storage/v1/object/public/Brainrots/Download.gif",
"lyrics_italian": "Trulimero Trulichina, il pretiletine in piscina, formaggio sulla trulalima, ma chi chiama la tazzina?
",
"lyrics_english": "Trulimero Trulichina, the pretiletine in the pool, cheese on the trulalima, but who calls the cup?
",
"lyrics_spanish": "Trulimero Trulichina, el pretiletino en la piscina, queso en la trulalima, pero ¿quien llama a la copa?
",
"personality_english": "Trulimero Trulicina is a cat-fish hybrid with human legs.
",
"personality_spanish": "Trulimero Trulichina es un hibrido de gato y pez con patas humanas.
",
"history_english": "On January 20, 2025, the user @Espeldo (also just called Ok) on TikTok made the Trulimero Truliccina audio with an AI generated image of a dolphin with a human face and snail on its head. Video which is now deleted. Just like Tralalero Tralala, it had many remixes who used the audio with AI images and weird cat and dog positions, that showed an image of these animals body language and in the other image there was a weird dog or cat image. Then on January 28th, 2025, TikToker @zanahoriatan33 posted the earliest known cat-fish hybrid video set to the "Trulimero Trulichina" sound effect, gathering over 7 million plays and 800,000 likes in three months
",
"history_spanish": "El 20 de enero de 2025, el usuario @Espeldo (tambien conocido simplemente como Ok) en TikTok creo el audio de Trulimero Truliccina acompanado de una imagen generada por IA de un delfin con cara humana y un caracol en la cabeza. Dicho video fue posteriormente eliminado. Al igual que con Tralalero Tralala, aparecieron muchos remixes que usaban el audio junto con imagenes de IA y posiciones extranas de gatos y perros, mostrando en una parte imagenes del lenguaje corporal de estos animales y en la otra imagenes distorsionadas de perros o gatos. Luego, el 28 de enero de 2025, la tiktoker @zanahoriatan33 publico el primer video conocido de un hibrido gato-pez con el efecto de sonido "Trulimero Trulichina", logrando mas de 7 millones de reproducciones y 800,000 me gusta en tres meses.
",
"reception_english": "On February 8th, 2025, the AI-generated cat-fish hybrid appeared in a video posted by TikToker @_goon_master_, who gathered over 8 million views and 700,000 likes on a video set to the "Trulimero Trulichina" sound effect in two months
",
"reception_spanish": "El 8 de febrero de 2025, el hibrido gato-pez generado por IA aparecio en un video publicado por el tiktoker @_goon_master_, quien consiguio mas de 8 millones de visualizaciones y 700,000 me gusta en un lapso de dos meses usando el efecto de sonido "Trulimero Trulichina".
",
"inbattle_english": "Trulimero Trulichina, as expected due to its not exactly fearsome characteristics, is often cited as one of the weakest fighters near the sea, often losing interactions with Tralalero Tralala.
",
"inbattle_spanish": "Trulimero Trulichina, como era de esperarse por sus caracteristicas poco intimidantes, suele ser mencionado como uno de los combatientes mas debiles cerca del mar, perdiendo con frecuencia enfrentamientos contra Tralalero Tralala.
"
}
] [].slug does not exist, returns 404 Not Found with an explanatory JSON.GET methods are accepted. Others return 405 Method Not Allowed.