Certificat AgentReady.md vérifié
Émis le sig: 91fb323085c15bd2 Vérifier →

URL analysée

https://bandcamp.k47.cz/

Analyser une autre URL

Score AI-Ready

46 / D

Insuffisant

sur 100

Économie de tokens

Tokens HTML 5574
Tokens Markdown 5637
Économie -1%

Détail du score

HTML sémantique 70/100
Efficacité du contenu 54/100
Visibilité IA 15/100
Données structurées 0/100
Accessibilité 100/100

Protocoles émergents

0 sur 3 détectés

Endpoints well-known recherchés par les agents IA. Détecté signifie qu’un agent peut découvrir et se connecter automatiquement à votre service.

  • OAuth Discovery RFC 8414
    /.well-known/oauth-authorization-server
  • MCP Server Card Anthropic
    /.well-known/mcp.json
  • A2A Agent Card Google
    /.well-known/agent.json

Votre site n’a pas de fichier llms.txt. C’est le standard émergent pour aider les AI agents à comprendre la structure de votre site.

Comment implémenter

Créez un fichier /llms.txt en suivant la spécification de llmstxt.org. Incluez une description du site et des liens vers vos pages principales.

Votre page n’utilise pas d’éléments <article> ou <main>. Ces conteneurs sémantiques aident les AI agents à identifier la zone de contenu principal et à ignorer la navigation, les barres latérales et les pieds de page.

Comment implémenter

Ajoutez un élément <main> autour du contenu principal de votre page, et utilisez <article> pour les blocs de contenu autonomes comme les billets de blog ou les descriptions de produits.

La conversion HTML vers Markdown montre un faible ratio de réduction de tokens. Votre page a un balisage excessif par rapport au contenu.

Comment implémenter

Éliminez le balisage inutile, les styles en ligne et les éléments de présentation. Gardez un HTML centré sur le contenu qui se convertit proprement en Markdown.

Votre site ne supporte pas Markdown for Agents. Ce standard Cloudflare permet aux agents IA de demander du contenu en format markdown, réduisant l'utilisation de tokens de ~80%.

Comment implémenter

Implémentez un ou plusieurs : (1) Répondre à Accept: text/markdown avec du contenu markdown. (2) Servir des URLs .md (ex : /page.md). (3) Ajouter des balises <link rel="alternate" type="text/markdown">. (4) Ajouter des en-têtes HTTP Link pour la découverte markdown.

{\n res.setHeader('Vary', 'Accept');\n res.setHeader('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n res.type('text/markdown; charset=utf-8');\n return res.send(renderMarkdown('page'));\n }\n res.render('page');\n});"},{"id":"fastify","label":"Fastify","language":"javascript","filename":"server.js","code":"// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n reply.header('Vary', 'Accept');\n reply.header('Link', '; rel=\"alternate\"; type=\"text/markdown\"');\n if ((req.headers.accept || '').includes('text/markdown')) {\n return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n }\n return reply.view('/page.ejs');\n});"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page/route.ts","code":"// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n const accept = req.headers.get('accept') || '';\n if (accept.includes('text/markdown')) {\n return new Response(await renderMarkdown('page'), {\n headers: {\n 'Content-Type': 'text/markdown; charset=utf-8',\n 'Vary': 'Accept',\n },\n });\n }\n // Fall through to the page component\n return new Response(null, { status: 404 });\n}"},{"id":"wordpress","label":"WordPress","language":"php","filename":"functions.php","code":"post_content));\n exit;\n});"},{"id":"static","label":"Hugo / Jekyll / Astro","language":"txt","filename":"static/page.md","code":"# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in :\n# "}] }'>

Votre site n’a pas de fichier robots.txt. Ce fichier contrôle la manière dont les bots (y compris les AI agents) accèdent à votre site.

Comment implémenter

Créez un fichier /robots.txt qui autorise l’accès à vos pages de contenu. Incluez une directive Sitemap pointant vers votre sitemap.xml.

Aucun sitemap trouvé. Un sitemap aide les AI agents à découvrir toutes les pages de votre site.

Comment implémenter

Créez un /sitemap.xml listant toutes vos pages publiques. La plupart des CMS peuvent le générer automatiquement.

Aucune directive Content-Signal trouvée. Celles-ci indiquent aux agents IA comment ils peuvent utiliser votre contenu (indexation, entrée IA, données d'entraînement). L'emplacement recommandé est robots.txt.

Comment implémenter

Ajoutez Content-Signal à votre robots.txt : User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. Vous pouvez aussi l'ajouter comme en-tête HTTP sur les réponses markdown.

{\n res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n done();\n});"}] }'>

Aucune donnée structurée Schema.org trouvée. JSON-LD aide les AI agents à extraire des informations factuelles et structurées de vos pages.

Comment implémenter

Ajoutez un bloc <script type="application/ld+json"> avec du balisage Schema.org. Utilisez les types appropriés : Article pour les billets de blog, Product pour les produits, Organization pour la page de votre entreprise.

Balises Open Graph manquantes ou incomplètes. Les balises OG aident les AI agents (et les plateformes sociales) à comprendre le titre, la description et l’image de votre page.

Comment implémenter

Ajoutez les balises meta og:title, og:description et og:image dans le <head> de votre page.

post_content), 30);\n $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n $url = get_permalink($post);\n printf('' . \"\\n\", esc_attr($title));\n printf('' . \"\\n\", esc_attr($desc));\n printf('' . \"\\n\", esc_url($image));\n printf('' . \"\\n\", esc_url($url));\n echo '' . \"\\n\";\n}, 5);"},{"id":"nextjs","label":"Next.js","language":"typescript","filename":"app/page.tsx","code":"// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n title: \"bandcamp explorer\",\n description: \"Page description.\",\n openGraph: {\n title: \"bandcamp explorer\",\n description: \"Page description.\",\n url: \"https://bandcamp.k47.cz/\",\n images: [\"https://yoursite.com/og-image.jpg\"],\n type: 'website',\n },\n};"}] }'>

Aucune meta description trouvée. Cette balise fournit un résumé concis de la page pour les AI agents et les moteurs de recherche.

Comment implémenter

Ajoutez une balise <meta name="description" content="..."> avec une description de 150 à 160 caractères sur le contenu de la page.

Tokens Markdown: 5637
bandcamp explorer is there to give you **RSS feed** for every bandcamp genre/tag and every artist

[search](https://bandcamp.k47.cz/?s) (now fixed)

tags: [electronic](https://bandcamp.k47.cz/?tag=electronic*) [experimental](https://bandcamp.k47.cz/?tag=experimental*) [rock](https://bandcamp.k47.cz/?tag=rock*) [alternative](https://bandcamp.k47.cz/?tag=alternative*) [ambient](https://bandcamp.k47.cz/?tag=ambient*) [hip-hop/rap](https://bandcamp.k47.cz/?tag=hip-hop/rap*) [hip hop](https://bandcamp.k47.cz/?tag=hip%20hop*) [pop](https://bandcamp.k47.cz/?tag=pop*) [metal](https://bandcamp.k47.cz/?tag=metal*) [techno](https://bandcamp.k47.cz/?tag=techno*) [punk](https://bandcamp.k47.cz/?tag=punk*) [indie](https://bandcamp.k47.cz/?tag=indie*) [house](https://bandcamp.k47.cz/?tag=house*) [folk](https://bandcamp.k47.cz/?tag=folk*) [rap](https://bandcamp.k47.cz/?tag=rap*) [acoustic](https://bandcamp.k47.cz/?tag=acoustic*) [noise](https://bandcamp.k47.cz/?tag=noise*) [indie rock](https://bandcamp.k47.cz/?tag=indie%20rock*) [instrumental](https://bandcamp.k47.cz/?tag=instrumental*) [jazz](https://bandcamp.k47.cz/?tag=jazz*) [lo-fi](https://bandcamp.k47.cz/?tag=lo-fi*) [electronica](https://bandcamp.k47.cz/?tag=electronica*) [soundtrack](https://bandcamp.k47.cz/?tag=soundtrack*) [singer-songwriter](https://bandcamp.k47.cz/?tag=singer-songwriter*) [alternative rock](https://bandcamp.k47.cz/?tag=alternative%20rock*) [drone](https://bandcamp.k47.cz/?tag=drone*) [hardcore](https://bandcamp.k47.cz/?tag=hardcore*) [indie pop](https://bandcamp.k47.cz/?tag=indie%20pop*) [deep house](https://bandcamp.k47.cz/?tag=deep%20house*) [world](https://bandcamp.k47.cz/?tag=world*) [dance](https://bandcamp.k47.cz/?tag=dance*) [soul](https://bandcamp.k47.cz/?tag=soul*) [psychedelic](https://bandcamp.k47.cz/?tag=psychedelic*) [funk](https://bandcamp.k47.cz/?tag=funk*) [electro](https://bandcamp.k47.cz/?tag=electro*) [industrial](https://bandcamp.k47.cz/?tag=industrial*) [dark ambient](https://bandcamp.k47.cz/?tag=dark%20ambient*) [trap](https://bandcamp.k47.cz/?tag=trap*) [beats](https://bandcamp.k47.cz/?tag=beats*) [blues](https://bandcamp.k47.cz/?tag=blues*) [black metal](https://bandcamp.k47.cz/?tag=black%20metal*) [post-punk](https://bandcamp.k47.cz/?tag=post-punk*) [r&b](https://bandcamp.k47.cz/?tag=r%26b*) [dubstep](https://bandcamp.k47.cz/?tag=dubstep*) [experimental electronic](https://bandcamp.k47.cz/?tag=experimental%20electronic*) [edm](https://bandcamp.k47.cz/?tag=edm*) [drum & bass](https://bandcamp.k47.cz/?tag=drum%20%26%20bass*) [downtempo](https://bandcamp.k47.cz/?tag=downtempo*) [punk rock](https://bandcamp.k47.cz/?tag=punk%20rock*) [classical](https://bandcamp.k47.cz/?tag=classical*) [post-rock](https://bandcamp.k47.cz/?tag=post-rock*) [synthpop](https://bandcamp.k47.cz/?tag=synthpop*) [synthwave](https://bandcamp.k47.cz/?tag=synthwave*) [tech house](https://bandcamp.k47.cz/?tag=tech%20house*) [death metal](https://bandcamp.k47.cz/?tag=death%20metal*) [shoegaze](https://bandcamp.k47.cz/?tag=shoegaze*) [reggae](https://bandcamp.k47.cz/?tag=reggae*) [idm](https://bandcamp.k47.cz/?tag=idm*) [trance](https://bandcamp.k47.cz/?tag=trance*) [underground hip hop](https://bandcamp.k47.cz/?tag=underground%20hip%20hop*) [country](https://bandcamp.k47.cz/?tag=country*) [avant-garde](https://bandcamp.k47.cz/?tag=avant-garde*) [minimal](https://bandcamp.k47.cz/?tag=minimal*) [rock & roll](https://bandcamp.k47.cz/?tag=rock%20%26%20roll*) [pop rock](https://bandcamp.k47.cz/?tag=pop%20rock*) [underground](https://bandcamp.k47.cz/?tag=underground*) [chillout](https://bandcamp.k47.cz/?tag=chillout*) [instrumental hip-hop](https://bandcamp.k47.cz/?tag=instrumental%20hip-hop*) [electronic music](https://bandcamp.k47.cz/?tag=electronic%20music*) [chill](https://bandcamp.k47.cz/?tag=chill*) [progressive](https://bandcamp.k47.cz/?tag=progressive*) [dub](https://bandcamp.k47.cz/?tag=dub*) [piano](https://bandcamp.k47.cz/?tag=piano*) [indie folk](https://bandcamp.k47.cz/?tag=indie%20folk*) [emo](https://bandcamp.k47.cz/?tag=emo*) [hard rock](https://bandcamp.k47.cz/?tag=hard%20rock*) [ambient electronic](https://bandcamp.k47.cz/?tag=ambient%20electronic*) [dream pop](https://bandcamp.k47.cz/?tag=dream%20pop*) [folk rock](https://bandcamp.k47.cz/?tag=folk%20rock*) [pop punk](https://bandcamp.k47.cz/?tag=pop%20punk*) [garage](https://bandcamp.k47.cz/?tag=garage*) [trip hop](https://bandcamp.k47.cz/?tag=trip%20hop*) [vaporwave](https://bandcamp.k47.cz/?tag=vaporwave*) [americana](https://bandcamp.k47.cz/?tag=americana*) [synth](https://bandcamp.k47.cz/?tag=synth*) [bass](https://bandcamp.k47.cz/?tag=bass*) [r&b/soul](https://bandcamp.k47.cz/?tag=r%26b/soul*) [spoken word](https://bandcamp.k47.cz/?tag=spoken%20word*) [improvisation](https://bandcamp.k47.cz/?tag=improvisation*) [disco](https://bandcamp.k47.cz/?tag=disco*) [guitar](https://bandcamp.k47.cz/?tag=guitar*) [boom bap](https://bandcamp.k47.cz/?tag=boom%20bap*) [progressive rock](https://bandcamp.k47.cz/?tag=progressive%20rock*) [harsh noise](https://bandcamp.k47.cz/?tag=harsh%20noise*) [grunge](https://bandcamp.k47.cz/?tag=grunge*) [jungle](https://bandcamp.k47.cz/?tag=jungle*) [breakbeat](https://bandcamp.k47.cz/?tag=breakbeat*) [darkwave](https://bandcamp.k47.cz/?tag=darkwave*) [psychedelic rock](https://bandcamp.k47.cz/?tag=psychedelic%20rock*) [house music](https://bandcamp.k47.cz/?tag=house%20music*) [heavy metal](https://bandcamp.k47.cz/?tag=heavy%20metal*) [psytrance](https://bandcamp.k47.cz/?tag=psytrance*) [acid](https://bandcamp.k47.cz/?tag=acid*) [grindcore](https://bandcamp.k47.cz/?tag=grindcore*) [metalcore](https://bandcamp.k47.cz/?tag=metalcore*) [new wave](https://bandcamp.k47.cz/?tag=new%20wave*) [hardcore punk](https://bandcamp.k47.cz/?tag=hardcore%20punk*) [atmospheric](https://bandcamp.k47.cz/?tag=atmospheric*) [soundscape](https://bandcamp.k47.cz/?tag=soundscape*) [garage rock](https://bandcamp.k47.cz/?tag=garage%20rock*) [cinematic](https://bandcamp.k47.cz/?tag=cinematic*) [remix](https://bandcamp.k47.cz/?tag=remix*) [breaks](https://bandcamp.k47.cz/?tag=breaks*) [new age](https://bandcamp.k47.cz/?tag=new%20age*) [diy](https://bandcamp.k47.cz/?tag=diy*) [devotional](https://bandcamp.k47.cz/?tag=devotional*) [electropop](https://bandcamp.k47.cz/?tag=electropop*) [post-hardcore](https://bandcamp.k47.cz/?tag=post-hardcore*) [dark](https://bandcamp.k47.cz/?tag=dark*) [latin](https://bandcamp.k47.cz/?tag=latin*) [progressive house](https://bandcamp.k47.cz/?tag=progressive%20house*) [hard techno](https://bandcamp.k47.cz/?tag=hard%20techno*) [alternative pop](https://bandcamp.k47.cz/?tag=alternative%20pop*) [orchestral](https://bandcamp.k47.cz/?tag=orchestral*) [music](https://bandcamp.k47.cz/?tag=music*) [drum and bass](https://bandcamp.k47.cz/?tag=drum%20and%20bass*) [glitch](https://bandcamp.k47.cz/?tag=glitch*) [meditation](https://bandcamp.k47.cz/?tag=meditation*) [doom](https://bandcamp.k47.cz/?tag=doom*) [bass music](https://bandcamp.k47.cz/?tag=bass%20music*) [noise rock](https://bandcamp.k47.cz/?tag=noise%20rock*) [experimental rock](https://bandcamp.k47.cz/?tag=experimental%20rock*) [thrash metal](https://bandcamp.k47.cz/?tag=thrash%20metal*) [world music](https://bandcamp.k47.cz/?tag=world%20music*) [dnb](https://bandcamp.k47.cz/?tag=dnb*) [comedy](https://bandcamp.k47.cz/?tag=comedy*) [instrumentals](https://bandcamp.k47.cz/?tag=instrumentals*) [power pop](https://bandcamp.k47.cz/?tag=power%20pop*) [breakcore](https://bandcamp.k47.cz/?tag=breakcore*) [electroacoustic](https://bandcamp.k47.cz/?tag=electroacoustic*) [lofi hiphop](https://bandcamp.k47.cz/?tag=lofi%20hiphop*) [doom metal](https://bandcamp.k47.cz/?tag=doom%20metal*) [progressive metal](https://bandcamp.k47.cz/?tag=progressive%20metal*) [sound art](https://bandcamp.k47.cz/?tag=sound%20art*) [bedroom pop](https://bandcamp.k47.cz/?tag=bedroom%20pop*) [field recordings](https://bandcamp.k47.cz/?tag=field%20recordings*) [chillwave](https://bandcamp.k47.cz/?tag=chillwave*) [nu disco](https://bandcamp.k47.cz/?tag=nu%20disco*) [fusion](https://bandcamp.k47.cz/?tag=fusion*) [rnb](https://bandcamp.k47.cz/?tag=rnb*) [blues rock](https://bandcamp.k47.cz/?tag=blues%20rock*) [acoustic guitar](https://bandcamp.k47.cz/?tag=acoustic%20guitar*) [melodic](https://bandcamp.k47.cz/?tag=melodic*) [chiptune](https://bandcamp.k47.cz/?tag=chiptune*) [alternative hip-hop](https://bandcamp.k47.cz/?tag=alternative%20hip-hop*) [rave](https://bandcamp.k47.cz/?tag=rave*) [80s](https://bandcamp.k47.cz/?tag=80s*) [rap & hip-hop](https://bandcamp.k47.cz/?tag=rap%20%26%20hip-hop*) [dance music](https://bandcamp.k47.cz/?tag=dance%20music*) [dub techno](https://bandcamp.k47.cz/?tag=dub%20techno*) [hip hop instrumentals](https://bandcamp.k47.cz/?tag=hip%20hop%20instrumentals*) [roots](https://bandcamp.k47.cz/?tag=roots*) [drone ambient](https://bandcamp.k47.cz/?tag=drone%20ambient*) [ebm](https://bandcamp.k47.cz/?tag=ebm*) [art rock](https://bandcamp.k47.cz/?tag=art%20rock*) [stoner rock](https://bandcamp.k47.cz/?tag=stoner%20rock*) [neoclassical](https://bandcamp.k47.cz/?tag=neoclassical*) [alt-country](https://bandcamp.k47.cz/?tag=alt-country*) [neo-soul](https://bandcamp.k47.cz/?tag=neo-soul*) [afro house](https://bandcamp.k47.cz/?tag=afro%20house*) [goth](https://bandcamp.k47.cz/?tag=goth*) [harsh noise wall](https://bandcamp.k47.cz/?tag=harsh%20noise%20wall*) [free jazz](https://bandcamp.k47.cz/?tag=free%20jazz*) [deep](https://bandcamp.k47.cz/?tag=deep*) [vocal](https://bandcamp.k47.cz/?tag=vocal*) [experimental hip-hop](https://bandcamp.k47.cz/?tag=experimental%20hip-hop*) [retrowave](https://bandcamp.k47.cz/?tag=retrowave*) [dungeon synth](https://bandcamp.k47.cz/?tag=dungeon%20synth*) [minimal techno](https://bandcamp.k47.cz/?tag=minimal%20techno*) [soundscapes](https://bandcamp.k47.cz/?tag=soundscapes*) [grime](https://bandcamp.k47.cz/?tag=grime*) [christian](https://bandcamp.k47.cz/?tag=christian*) [power electronics](https://bandcamp.k47.cz/?tag=power%20electronics*) [songwriter](https://bandcamp.k47.cz/?tag=songwriter*) [groove](https://bandcamp.k47.cz/?tag=groove*) [math rock](https://bandcamp.k47.cz/?tag=math%20rock*) [contemporary](https://bandcamp.k47.cz/?tag=contemporary*) [future bass](https://bandcamp.k47.cz/?tag=future%20bass*) [sludge](https://bandcamp.k47.cz/?tag=sludge*) [poetry](https://bandcamp.k47.cz/?tag=poetry*) [underground rap](https://bandcamp.k47.cz/?tag=underground%20rap*) [folk pop](https://bandcamp.k47.cz/?tag=folk%20pop*) [audiobooks](https://bandcamp.k47.cz/?tag=audiobooks*) [chillhop](https://bandcamp.k47.cz/?tag=chillhop*) [uk garage](https://bandcamp.k47.cz/?tag=uk%20garage*) [beat tape](https://bandcamp.k47.cz/?tag=beat%20tape*) [dancehall](https://bandcamp.k47.cz/?tag=dancehall*) [industrial techno](https://bandcamp.k47.cz/?tag=industrial%20techno*) [abstract](https://bandcamp.k47.cz/?tag=abstract*) [ska](https://bandcamp.k47.cz/?tag=ska*) [deep techno](https://bandcamp.k47.cz/?tag=deep%20techno*) [space](https://bandcamp.k47.cz/?tag=space*) [video game music](https://bandcamp.k47.cz/?tag=video%20game%20music*) [folk punk](https://bandcamp.k47.cz/?tag=folk%20punk*) [free improvisation](https://bandcamp.k47.cz/?tag=free%20improvisation*) [deep tech](https://bandcamp.k47.cz/?tag=deep%20tech*) [epic](https://bandcamp.k47.cz/?tag=epic*) [synthesizer](https://bandcamp.k47.cz/?tag=synthesizer*) [stoner](https://bandcamp.k47.cz/?tag=stoner*) [club](https://bandcamp.k47.cz/?tag=club*) [plunderphonics](https://bandcamp.k47.cz/?tag=plunderphonics*) [deathcore](https://bandcamp.k47.cz/?tag=deathcore*) [classic rock](https://bandcamp.k47.cz/?tag=classic%20rock*) [independent](https://bandcamp.k47.cz/?tag=independent*) [jazz fusion](https://bandcamp.k47.cz/?tag=jazz%20fusion*) [space rock](https://bandcamp.k47.cz/?tag=space%20rock*) [afrobeat](https://bandcamp.k47.cz/?tag=afrobeat*) [melodic techno](https://bandcamp.k47.cz/?tag=melodic%20techno*) [film music](https://bandcamp.k47.cz/?tag=film%20music*) [video game](https://bandcamp.k47.cz/?tag=video%20game*) [spiritual](https://bandcamp.k47.cz/?tag=spiritual*) [gospel](https://bandcamp.k47.cz/?tag=gospel*) [gothic](https://bandcamp.k47.cz/?tag=gothic*) [live](https://bandcamp.k47.cz/?tag=live*) [surf](https://bandcamp.k47.cz/?tag=surf*) [acoustic rock](https://bandcamp.k47.cz/?tag=acoustic%20rock*) [hyperpop](https://bandcamp.k47.cz/?tag=hyperpop*) [post-metal](https://bandcamp.k47.cz/?tag=post-metal*) [phonk](https://bandcamp.k47.cz/?tag=phonk*) [krautrock](https://bandcamp.k47.cz/?tag=krautrock*) [garage punk](https://bandcamp.k47.cz/?tag=garage%20punk*) [love](https://bandcamp.k47.cz/?tag=love*) [noisecore](https://bandcamp.k47.cz/?tag=noisecore*) [musique concrete](https://bandcamp.k47.cz/?tag=musique%20concrete*) [samples](https://bandcamp.k47.cz/?tag=samples*) [retro](https://bandcamp.k47.cz/?tag=retro*) [funky](https://bandcamp.k47.cz/?tag=funky*) [horror](https://bandcamp.k47.cz/?tag=horror*) [podcasts](https://bandcamp.k47.cz/?tag=podcasts*) [soulful house](https://bandcamp.k47.cz/?tag=soulful%20house*) [witch house](https://bandcamp.k47.cz/?tag=witch%20house*) [field recording](https://bandcamp.k47.cz/?tag=field%20recording*) [psych](https://bandcamp.k47.cz/?tag=psych*) [remixes](https://bandcamp.k47.cz/?tag=remixes*) [beat](https://bandcamp.k47.cz/?tag=beat*) [screamo](https://bandcamp.k47.cz/?tag=screamo*) [powerviolence](https://bandcamp.k47.cz/?tag=powerviolence*) [prog](https://bandcamp.k47.cz/?tag=prog*) [atmospheric black metal](https://bandcamp.k47.cz/?tag=atmospheric%20black%20metal*) [soulful](https://bandcamp.k47.cz/?tag=soulful*) [acid techno](https://bandcamp.k47.cz/?tag=acid%20techno*) [psychedelic trance](https://bandcamp.k47.cz/?tag=psychedelic%20trance*) [microhouse](https://bandcamp.k47.cz/?tag=microhouse*) [experimental pop](https://bandcamp.k47.cz/?tag=experimental%20pop*) [wave](https://bandcamp.k47.cz/?tag=wave*) [cyberpunk](https://bandcamp.k47.cz/?tag=cyberpunk*) [christmas](https://bandcamp.k47.cz/?tag=christmas*) [indie dance](https://bandcamp.k47.cz/?tag=indie%20dance*) [jam](https://bandcamp.k47.cz/?tag=jam*) [dark techno](https://bandcamp.k47.cz/?tag=dark%20techno*) [minimalism](https://bandcamp.k47.cz/?tag=minimalism*) [improvised music](https://bandcamp.k47.cz/?tag=improvised%20music*) [modern classical](https://bandcamp.k47.cz/?tag=modern%20classical*) [old school](https://bandcamp.k47.cz/?tag=old%20school*) [sad](https://bandcamp.k47.cz/?tag=sad*) [djent](https://bandcamp.k47.cz/?tag=djent*) [mashup](https://bandcamp.k47.cz/?tag=mashup*) [lounge](https://bandcamp.k47.cz/?tag=lounge*) [instrumental rock](https://bandcamp.k47.cz/?tag=instrumental%20rock*) [trap music](https://bandcamp.k47.cz/?tag=trap%20music*) [coldwave](https://bandcamp.k47.cz/?tag=coldwave*) [jazzy](https://bandcamp.k47.cz/?tag=jazzy*) [techno and variations](https://bandcamp.k47.cz/?tag=techno%20and%20variations*) [glitch hop](https://bandcamp.k47.cz/?tag=glitch%20hop*) [female vocals](https://bandcamp.k47.cz/?tag=female%20vocals*) [raw black metal](https://bandcamp.k47.cz/?tag=raw%20black%20metal*) [thrash](https://bandcamp.k47.cz/?tag=thrash*) [bedroom](https://bandcamp.k47.cz/?tag=bedroom*) [contemporary classical](https://bandcamp.k47.cz/?tag=contemporary%20classical*) [hnw](https://bandcamp.k47.cz/?tag=hnw*) [bluegrass](https://bandcamp.k47.cz/?tag=bluegrass*) [freestyle](https://bandcamp.k47.cz/?tag=freestyle*) [easy listening](https://bandcamp.k47.cz/?tag=easy%20listening*) [goregrind](https://bandcamp.k47.cz/?tag=goregrind*) [heavy](https://bandcamp.k47.cz/?tag=heavy*) [crust](https://bandcamp.k47.cz/?tag=crust*) [prog rock](https://bandcamp.k47.cz/?tag=prog%20rock*) [weird](https://bandcamp.k47.cz/?tag=weird*) [drums](https://bandcamp.k47.cz/?tag=drums*) [country rock](https://bandcamp.k47.cz/?tag=country%20rock*) [tribal](https://bandcamp.k47.cz/?tag=tribal*) [kids](https://bandcamp.k47.cz/?tag=kids*) [electro house](https://bandcamp.k47.cz/?tag=electro%20house*) [8bit](https://bandcamp.k47.cz/?tag=8bit*) [drum n bass](https://bandcamp.k47.cz/?tag=drum%20n%20bass*) [noise pop](https://bandcamp.k47.cz/?tag=noise%20pop*) [emotional](https://bandcamp.k47.cz/?tag=emotional*) [improv](https://bandcamp.k47.cz/?tag=improv*) [meditation music](https://bandcamp.k47.cz/?tag=meditation%20music*) [90s](https://bandcamp.k47.cz/?tag=90s*) · [more tags...](https://bandcamp.k47.cz/?tags)

*7077000 albums + 4834000 singles = 57400000 tracks
1112000 [creative commons](https://bandcamp.k47.cz/?tag=creative%20commons**) releases
481 years and 171236 days of music in total
*
bandcamp explorer # [bandcamp explorer](https://bandcamp.k47.cz/?)  [🔍︎](https://bandcamp.k47.cz/?s)
bandcamp explorer is there to give you **RSS feed** for every bandcamp genre/tag and every artist

[search](https://bandcamp.k47.cz/?s) (now fixed)

tags: [electronic](https://bandcamp.k47.cz/?tag=electronic*) [experimental](https://bandcamp.k47.cz/?tag=experimental*) [rock](https://bandcamp.k47.cz/?tag=rock*) [alternative](https://bandcamp.k47.cz/?tag=alternative*) [ambient](https://bandcamp.k47.cz/?tag=ambient*) [hip-hop/rap](https://bandcamp.k47.cz/?tag=hip-hop/rap*) [hip hop](https://bandcamp.k47.cz/?tag=hip%20hop*) [pop](https://bandcamp.k47.cz/?tag=pop*) [metal](https://bandcamp.k47.cz/?tag=metal*) [techno](https://bandcamp.k47.cz/?tag=techno*) [punk](https://bandcamp.k47.cz/?tag=punk*) [indie](https://bandcamp.k47.cz/?tag=indie*) [house](https://bandcamp.k47.cz/?tag=house*) [folk](https://bandcamp.k47.cz/?tag=folk*) [rap](https://bandcamp.k47.cz/?tag=rap*) [acoustic](https://bandcamp.k47.cz/?tag=acoustic*) [noise](https://bandcamp.k47.cz/?tag=noise*) [indie rock](https://bandcamp.k47.cz/?tag=indie%20rock*) [instrumental](https://bandcamp.k47.cz/?tag=instrumental*) [jazz](https://bandcamp.k47.cz/?tag=jazz*) [lo-fi](https://bandcamp.k47.cz/?tag=lo-fi*) [electronica](https://bandcamp.k47.cz/?tag=electronica*) [soundtrack](https://bandcamp.k47.cz/?tag=soundtrack*) [singer-songwriter](https://bandcamp.k47.cz/?tag=singer-songwriter*) [alternative rock](https://bandcamp.k47.cz/?tag=alternative%20rock*) [drone](https://bandcamp.k47.cz/?tag=drone*) [hardcore](https://bandcamp.k47.cz/?tag=hardcore*) [indie pop](https://bandcamp.k47.cz/?tag=indie%20pop*) [deep house](https://bandcamp.k47.cz/?tag=deep%20house*) [world](https://bandcamp.k47.cz/?tag=world*) [dance](https://bandcamp.k47.cz/?tag=dance*) [soul](https://bandcamp.k47.cz/?tag=soul*) [psychedelic](https://bandcamp.k47.cz/?tag=psychedelic*) [funk](https://bandcamp.k47.cz/?tag=funk*) [electro](https://bandcamp.k47.cz/?tag=electro*) [industrial](https://bandcamp.k47.cz/?tag=industrial*) [dark ambient](https://bandcamp.k47.cz/?tag=dark%20ambient*) [trap](https://bandcamp.k47.cz/?tag=trap*) [beats](https://bandcamp.k47.cz/?tag=beats*) [blues](https://bandcamp.k47.cz/?tag=blues*) [black metal](https://bandcamp.k47.cz/?tag=black%20metal*) [post-punk](https://bandcamp.k47.cz/?tag=post-punk*) [r&b](https://bandcamp.k47.cz/?tag=r%26b*) [dubstep](https://bandcamp.k47.cz/?tag=dubstep*) [experimental electronic](https://bandcamp.k47.cz/?tag=experimental%20electronic*) [edm](https://bandcamp.k47.cz/?tag=edm*) [drum & bass](https://bandcamp.k47.cz/?tag=drum%20%26%20bass*) [downtempo](https://bandcamp.k47.cz/?tag=downtempo*) [punk rock](https://bandcamp.k47.cz/?tag=punk%20rock*) [classical](https://bandcamp.k47.cz/?tag=classical*) [post-rock](https://bandcamp.k47.cz/?tag=post-rock*) [synthpop](https://bandcamp.k47.cz/?tag=synthpop*) [synthwave](https://bandcamp.k47.cz/?tag=synthwave*) [tech house](https://bandcamp.k47.cz/?tag=tech%20house*) [death metal](https://bandcamp.k47.cz/?tag=death%20metal*) [shoegaze](https://bandcamp.k47.cz/?tag=shoegaze*) [reggae](https://bandcamp.k47.cz/?tag=reggae*) [idm](https://bandcamp.k47.cz/?tag=idm*) [trance](https://bandcamp.k47.cz/?tag=trance*) [underground hip hop](https://bandcamp.k47.cz/?tag=underground%20hip%20hop*) [country](https://bandcamp.k47.cz/?tag=country*) [avant-garde](https://bandcamp.k47.cz/?tag=avant-garde*) [minimal](https://bandcamp.k47.cz/?tag=minimal*) [rock & roll](https://bandcamp.k47.cz/?tag=rock%20%26%20roll*) [pop rock](https://bandcamp.k47.cz/?tag=pop%20rock*) [underground](https://bandcamp.k47.cz/?tag=underground*) [chillout](https://bandcamp.k47.cz/?tag=chillout*) [instrumental hip-hop](https://bandcamp.k47.cz/?tag=instrumental%20hip-hop*) [electronic music](https://bandcamp.k47.cz/?tag=electronic%20music*) [chill](https://bandcamp.k47.cz/?tag=chill*) [progressive](https://bandcamp.k47.cz/?tag=progressive*) [dub](https://bandcamp.k47.cz/?tag=dub*) [piano](https://bandcamp.k47.cz/?tag=piano*) [indie folk](https://bandcamp.k47.cz/?tag=indie%20folk*) [emo](https://bandcamp.k47.cz/?tag=emo*) [hard rock](https://bandcamp.k47.cz/?tag=hard%20rock*) [ambient electronic](https://bandcamp.k47.cz/?tag=ambient%20electronic*) [dream pop](https://bandcamp.k47.cz/?tag=dream%20pop*) [folk rock](https://bandcamp.k47.cz/?tag=folk%20rock*) [pop punk](https://bandcamp.k47.cz/?tag=pop%20punk*) [garage](https://bandcamp.k47.cz/?tag=garage*) [trip hop](https://bandcamp.k47.cz/?tag=trip%20hop*) [vaporwave](https://bandcamp.k47.cz/?tag=vaporwave*) [americana](https://bandcamp.k47.cz/?tag=americana*) [synth](https://bandcamp.k47.cz/?tag=synth*) [bass](https://bandcamp.k47.cz/?tag=bass*) [r&b/soul](https://bandcamp.k47.cz/?tag=r%26b/soul*) [spoken word](https://bandcamp.k47.cz/?tag=spoken%20word*) [improvisation](https://bandcamp.k47.cz/?tag=improvisation*) [disco](https://bandcamp.k47.cz/?tag=disco*) [guitar](https://bandcamp.k47.cz/?tag=guitar*) [boom bap](https://bandcamp.k47.cz/?tag=boom%20bap*) [progressive rock](https://bandcamp.k47.cz/?tag=progressive%20rock*) [harsh noise](https://bandcamp.k47.cz/?tag=harsh%20noise*) [grunge](https://bandcamp.k47.cz/?tag=grunge*) [jungle](https://bandcamp.k47.cz/?tag=jungle*) [breakbeat](https://bandcamp.k47.cz/?tag=breakbeat*) [darkwave](https://bandcamp.k47.cz/?tag=darkwave*) [psychedelic rock](https://bandcamp.k47.cz/?tag=psychedelic%20rock*) [house music](https://bandcamp.k47.cz/?tag=house%20music*) [heavy metal](https://bandcamp.k47.cz/?tag=heavy%20metal*) [psytrance](https://bandcamp.k47.cz/?tag=psytrance*) [acid](https://bandcamp.k47.cz/?tag=acid*) [grindcore](https://bandcamp.k47.cz/?tag=grindcore*) [metalcore](https://bandcamp.k47.cz/?tag=metalcore*) [new wave](https://bandcamp.k47.cz/?tag=new%20wave*) [hardcore punk](https://bandcamp.k47.cz/?tag=hardcore%20punk*) [atmospheric](https://bandcamp.k47.cz/?tag=atmospheric*) [soundscape](https://bandcamp.k47.cz/?tag=soundscape*) [garage rock](https://bandcamp.k47.cz/?tag=garage%20rock*) [cinematic](https://bandcamp.k47.cz/?tag=cinematic*) [remix](https://bandcamp.k47.cz/?tag=remix*) [breaks](https://bandcamp.k47.cz/?tag=breaks*) [new age](https://bandcamp.k47.cz/?tag=new%20age*) [diy](https://bandcamp.k47.cz/?tag=diy*) [devotional](https://bandcamp.k47.cz/?tag=devotional*) [electropop](https://bandcamp.k47.cz/?tag=electropop*) [post-hardcore](https://bandcamp.k47.cz/?tag=post-hardcore*) [dark](https://bandcamp.k47.cz/?tag=dark*) [latin](https://bandcamp.k47.cz/?tag=latin*) [progressive house](https://bandcamp.k47.cz/?tag=progressive%20house*) [hard techno](https://bandcamp.k47.cz/?tag=hard%20techno*) [alternative pop](https://bandcamp.k47.cz/?tag=alternative%20pop*) [orchestral](https://bandcamp.k47.cz/?tag=orchestral*) [music](https://bandcamp.k47.cz/?tag=music*) [drum and bass](https://bandcamp.k47.cz/?tag=drum%20and%20bass*) [glitch](https://bandcamp.k47.cz/?tag=glitch*) [meditation](https://bandcamp.k47.cz/?tag=meditation*) [doom](https://bandcamp.k47.cz/?tag=doom*) [bass music](https://bandcamp.k47.cz/?tag=bass%20music*) [noise rock](https://bandcamp.k47.cz/?tag=noise%20rock*) [experimental rock](https://bandcamp.k47.cz/?tag=experimental%20rock*) [thrash metal](https://bandcamp.k47.cz/?tag=thrash%20metal*) [world music](https://bandcamp.k47.cz/?tag=world%20music*) [dnb](https://bandcamp.k47.cz/?tag=dnb*) [comedy](https://bandcamp.k47.cz/?tag=comedy*) [instrumentals](https://bandcamp.k47.cz/?tag=instrumentals*) [power pop](https://bandcamp.k47.cz/?tag=power%20pop*) [breakcore](https://bandcamp.k47.cz/?tag=breakcore*) [electroacoustic](https://bandcamp.k47.cz/?tag=electroacoustic*) [lofi hiphop](https://bandcamp.k47.cz/?tag=lofi%20hiphop*) [doom metal](https://bandcamp.k47.cz/?tag=doom%20metal*) [progressive metal](https://bandcamp.k47.cz/?tag=progressive%20metal*) [sound art](https://bandcamp.k47.cz/?tag=sound%20art*) [bedroom pop](https://bandcamp.k47.cz/?tag=bedroom%20pop*) [field recordings](https://bandcamp.k47.cz/?tag=field%20recordings*) [chillwave](https://bandcamp.k47.cz/?tag=chillwave*) [nu disco](https://bandcamp.k47.cz/?tag=nu%20disco*) [fusion](https://bandcamp.k47.cz/?tag=fusion*) [rnb](https://bandcamp.k47.cz/?tag=rnb*) [blues rock](https://bandcamp.k47.cz/?tag=blues%20rock*) [acoustic guitar](https://bandcamp.k47.cz/?tag=acoustic%20guitar*) [melodic](https://bandcamp.k47.cz/?tag=melodic*) [chiptune](https://bandcamp.k47.cz/?tag=chiptune*) [alternative hip-hop](https://bandcamp.k47.cz/?tag=alternative%20hip-hop*) [rave](https://bandcamp.k47.cz/?tag=rave*) [80s](https://bandcamp.k47.cz/?tag=80s*) [rap & hip-hop](https://bandcamp.k47.cz/?tag=rap%20%26%20hip-hop*) [dance music](https://bandcamp.k47.cz/?tag=dance%20music*) [dub techno](https://bandcamp.k47.cz/?tag=dub%20techno*) [hip hop instrumentals](https://bandcamp.k47.cz/?tag=hip%20hop%20instrumentals*) [roots](https://bandcamp.k47.cz/?tag=roots*) [drone ambient](https://bandcamp.k47.cz/?tag=drone%20ambient*) [ebm](https://bandcamp.k47.cz/?tag=ebm*) [art rock](https://bandcamp.k47.cz/?tag=art%20rock*) [stoner rock](https://bandcamp.k47.cz/?tag=stoner%20rock*) [neoclassical](https://bandcamp.k47.cz/?tag=neoclassical*) [alt-country](https://bandcamp.k47.cz/?tag=alt-country*) [neo-soul](https://bandcamp.k47.cz/?tag=neo-soul*) [afro house](https://bandcamp.k47.cz/?tag=afro%20house*) [goth](https://bandcamp.k47.cz/?tag=goth*) [harsh noise wall](https://bandcamp.k47.cz/?tag=harsh%20noise%20wall*) [free jazz](https://bandcamp.k47.cz/?tag=free%20jazz*) [deep](https://bandcamp.k47.cz/?tag=deep*) [vocal](https://bandcamp.k47.cz/?tag=vocal*) [experimental hip-hop](https://bandcamp.k47.cz/?tag=experimental%20hip-hop*) [retrowave](https://bandcamp.k47.cz/?tag=retrowave*) [dungeon synth](https://bandcamp.k47.cz/?tag=dungeon%20synth*) [minimal techno](https://bandcamp.k47.cz/?tag=minimal%20techno*) [soundscapes](https://bandcamp.k47.cz/?tag=soundscapes*) [grime](https://bandcamp.k47.cz/?tag=grime*) [christian](https://bandcamp.k47.cz/?tag=christian*) [power electronics](https://bandcamp.k47.cz/?tag=power%20electronics*) [songwriter](https://bandcamp.k47.cz/?tag=songwriter*) [groove](https://bandcamp.k47.cz/?tag=groove*) [math rock](https://bandcamp.k47.cz/?tag=math%20rock*) [contemporary](https://bandcamp.k47.cz/?tag=contemporary*) [future bass](https://bandcamp.k47.cz/?tag=future%20bass*) [sludge](https://bandcamp.k47.cz/?tag=sludge*) [poetry](https://bandcamp.k47.cz/?tag=poetry*) [underground rap](https://bandcamp.k47.cz/?tag=underground%20rap*) [folk pop](https://bandcamp.k47.cz/?tag=folk%20pop*) [audiobooks](https://bandcamp.k47.cz/?tag=audiobooks*) [chillhop](https://bandcamp.k47.cz/?tag=chillhop*) [uk garage](https://bandcamp.k47.cz/?tag=uk%20garage*) [beat tape](https://bandcamp.k47.cz/?tag=beat%20tape*) [dancehall](https://bandcamp.k47.cz/?tag=dancehall*) [industrial techno](https://bandcamp.k47.cz/?tag=industrial%20techno*) [abstract](https://bandcamp.k47.cz/?tag=abstract*) [ska](https://bandcamp.k47.cz/?tag=ska*) [deep techno](https://bandcamp.k47.cz/?tag=deep%20techno*) [space](https://bandcamp.k47.cz/?tag=space*) [video game music](https://bandcamp.k47.cz/?tag=video%20game%20music*) [folk punk](https://bandcamp.k47.cz/?tag=folk%20punk*) [free improvisation](https://bandcamp.k47.cz/?tag=free%20improvisation*) [deep tech](https://bandcamp.k47.cz/?tag=deep%20tech*) [epic](https://bandcamp.k47.cz/?tag=epic*) [synthesizer](https://bandcamp.k47.cz/?tag=synthesizer*) [stoner](https://bandcamp.k47.cz/?tag=stoner*) [club](https://bandcamp.k47.cz/?tag=club*) [plunderphonics](https://bandcamp.k47.cz/?tag=plunderphonics*) [deathcore](https://bandcamp.k47.cz/?tag=deathcore*) [classic rock](https://bandcamp.k47.cz/?tag=classic%20rock*) [independent](https://bandcamp.k47.cz/?tag=independent*) [jazz fusion](https://bandcamp.k47.cz/?tag=jazz%20fusion*) [space rock](https://bandcamp.k47.cz/?tag=space%20rock*) [afrobeat](https://bandcamp.k47.cz/?tag=afrobeat*) [melodic techno](https://bandcamp.k47.cz/?tag=melodic%20techno*) [film music](https://bandcamp.k47.cz/?tag=film%20music*) [video game](https://bandcamp.k47.cz/?tag=video%20game*) [spiritual](https://bandcamp.k47.cz/?tag=spiritual*) [gospel](https://bandcamp.k47.cz/?tag=gospel*) [gothic](https://bandcamp.k47.cz/?tag=gothic*) [live](https://bandcamp.k47.cz/?tag=live*) [surf](https://bandcamp.k47.cz/?tag=surf*) [acoustic rock](https://bandcamp.k47.cz/?tag=acoustic%20rock*) [hyperpop](https://bandcamp.k47.cz/?tag=hyperpop*) [post-metal](https://bandcamp.k47.cz/?tag=post-metal*) [phonk](https://bandcamp.k47.cz/?tag=phonk*) [krautrock](https://bandcamp.k47.cz/?tag=krautrock*) [garage punk](https://bandcamp.k47.cz/?tag=garage%20punk*) [love](https://bandcamp.k47.cz/?tag=love*) [noisecore](https://bandcamp.k47.cz/?tag=noisecore*) [musique concrete](https://bandcamp.k47.cz/?tag=musique%20concrete*) [samples](https://bandcamp.k47.cz/?tag=samples*) [retro](https://bandcamp.k47.cz/?tag=retro*) [funky](https://bandcamp.k47.cz/?tag=funky*) [horror](https://bandcamp.k47.cz/?tag=horror*) [podcasts](https://bandcamp.k47.cz/?tag=podcasts*) [soulful house](https://bandcamp.k47.cz/?tag=soulful%20house*) [witch house](https://bandcamp.k47.cz/?tag=witch%20house*) [field recording](https://bandcamp.k47.cz/?tag=field%20recording*) [psych](https://bandcamp.k47.cz/?tag=psych*) [remixes](https://bandcamp.k47.cz/?tag=remixes*) [beat](https://bandcamp.k47.cz/?tag=beat*) [screamo](https://bandcamp.k47.cz/?tag=screamo*) [powerviolence](https://bandcamp.k47.cz/?tag=powerviolence*) [prog](https://bandcamp.k47.cz/?tag=prog*) [atmospheric black metal](https://bandcamp.k47.cz/?tag=atmospheric%20black%20metal*) [soulful](https://bandcamp.k47.cz/?tag=soulful*) [acid techno](https://bandcamp.k47.cz/?tag=acid%20techno*) [psychedelic trance](https://bandcamp.k47.cz/?tag=psychedelic%20trance*) [microhouse](https://bandcamp.k47.cz/?tag=microhouse*) [experimental pop](https://bandcamp.k47.cz/?tag=experimental%20pop*) [wave](https://bandcamp.k47.cz/?tag=wave*) [cyberpunk](https://bandcamp.k47.cz/?tag=cyberpunk*) [christmas](https://bandcamp.k47.cz/?tag=christmas*) [indie dance](https://bandcamp.k47.cz/?tag=indie%20dance*) [jam](https://bandcamp.k47.cz/?tag=jam*) [dark techno](https://bandcamp.k47.cz/?tag=dark%20techno*) [minimalism](https://bandcamp.k47.cz/?tag=minimalism*) [improvised music](https://bandcamp.k47.cz/?tag=improvised%20music*) [modern classical](https://bandcamp.k47.cz/?tag=modern%20classical*) [old school](https://bandcamp.k47.cz/?tag=old%20school*) [sad](https://bandcamp.k47.cz/?tag=sad*) [djent](https://bandcamp.k47.cz/?tag=djent*) [mashup](https://bandcamp.k47.cz/?tag=mashup*) [lounge](https://bandcamp.k47.cz/?tag=lounge*) [instrumental rock](https://bandcamp.k47.cz/?tag=instrumental%20rock*) [trap music](https://bandcamp.k47.cz/?tag=trap%20music*) [coldwave](https://bandcamp.k47.cz/?tag=coldwave*) [jazzy](https://bandcamp.k47.cz/?tag=jazzy*) [techno and variations](https://bandcamp.k47.cz/?tag=techno%20and%20variations*) [glitch hop](https://bandcamp.k47.cz/?tag=glitch%20hop*) [female vocals](https://bandcamp.k47.cz/?tag=female%20vocals*) [raw black metal](https://bandcamp.k47.cz/?tag=raw%20black%20metal*) [thrash](https://bandcamp.k47.cz/?tag=thrash*) [bedroom](https://bandcamp.k47.cz/?tag=bedroom*) [contemporary classical](https://bandcamp.k47.cz/?tag=contemporary%20classical*) [hnw](https://bandcamp.k47.cz/?tag=hnw*) [bluegrass](https://bandcamp.k47.cz/?tag=bluegrass*) [freestyle](https://bandcamp.k47.cz/?tag=freestyle*) [easy listening](https://bandcamp.k47.cz/?tag=easy%20listening*) [goregrind](https://bandcamp.k47.cz/?tag=goregrind*) [heavy](https://bandcamp.k47.cz/?tag=heavy*) [crust](https://bandcamp.k47.cz/?tag=crust*) [prog rock](https://bandcamp.k47.cz/?tag=prog%20rock*) [weird](https://bandcamp.k47.cz/?tag=weird*) [drums](https://bandcamp.k47.cz/?tag=drums*) [country rock](https://bandcamp.k47.cz/?tag=country%20rock*) [tribal](https://bandcamp.k47.cz/?tag=tribal*) [kids](https://bandcamp.k47.cz/?tag=kids*) [electro house](https://bandcamp.k47.cz/?tag=electro%20house*) [8bit](https://bandcamp.k47.cz/?tag=8bit*) [drum n bass](https://bandcamp.k47.cz/?tag=drum%20n%20bass*) [noise pop](https://bandcamp.k47.cz/?tag=noise%20pop*) [emotional](https://bandcamp.k47.cz/?tag=emotional*) [improv](https://bandcamp.k47.cz/?tag=improv*) [meditation music](https://bandcamp.k47.cz/?tag=meditation%20music*) [90s](https://bandcamp.k47.cz/?tag=90s*) · [more tags...](https://bandcamp.k47.cz/?tags)

*7077000 albums + 4834000 singles = 57400000 tracks
1112000 [creative commons](https://bandcamp.k47.cz/?tag=creative%20commons**) releases
481 years and 171236 days of music in total
*

Téléversez ce fichier sous /index.md sur votre serveur pour que les AI agents puissent accéder à une version propre de votre page. Vous pouvez également configurer la négociation de contenu Accept: text/markdown pour le servir automatiquement.

llms.txt généré pour cette page individuelle

Télécharger llms.txt
# bandcamp.k47.cz

> search (now fixed)

## Main
- [bandcamp explorer](https://bandcamp.k47.cz/): search (now fixed)

Le llms.txt complet nécessite une analyse de tout le domaine (bientôt disponible)

Téléversez ce fichier vers https://bandcamp.k47.cz/llms.txt à la racine de votre domaine. Les AI agents comme ChatGPT, Claude et Perplexity consultent ce fichier pour comprendre la structure de votre site.

HTML sémantique

Utilise les éléments article ou main (0/100)

Missing <article> and <main> elements

Hiérarchie de titres correcte (100/100)

Clean heading hierarchy

Utilise des éléments HTML sémantiques (50/100)

No divs or semantic elements found

Textes alternatifs descriptifs pour les images (100/100)

No images found

Faible profondeur d’imbrication des divs (100/100)

No divs found

Efficacité du contenu

Bon ratio de réduction de tokens (0/100)

-1% token reduction (HTML→Markdown)

Bon ratio contenu/bruit (80/100)

Content ratio: 23.6% (3306 content chars / 14022 HTML bytes)

Styles en ligne minimaux (100/100)

1/327 elements with inline styles (0.3%)

Poids de page raisonnable (100/100)

HTML size: 14KB

Visibilité IA

Possède un fichier llms.txt (0/100)

No llms.txt found

Possède un fichier robots.txt (0/100)

No robots.txt found

robots.txt autorise les bots IA (100/100)

No robots.txt — AI bots allowed by default

Possède un sitemap.xml (0/100)

No sitemap found

Support Markdown for Agents (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
A Content-Signal (robots.txt ou en-têtes HTTP) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

Données structurées

Possède Schema.org / JSON-LD (0/100)

No JSON-LD / Schema.org found

Possède des balises Open Graph (0/100)

0/3 OG tags present

Possède une meta description (0/100)

No meta description

Possède une URL canonique (0/100)

No canonical URL

Possède un attribut lang (0/100)

No lang attribute on <html>

Accessibilité

Contenu disponible sans JavaScript (100/100)

Content available without JavaScript

Taille de page raisonnable (100/100)

Page size: 14KB

Le contenu apparaît tôt dans le HTML (100/100)

Main content starts at 10% of HTML

{
  "url": "https://bandcamp.k47.cz/",
  "timestamp": 1779810434405,
  "fetch": {
    "mode": "simple",
    "timeMs": 227,
    "htmlSizeBytes": 14022,
    "supportsMarkdown": false,
    "markdownAgents": {
      "contentNegotiation": false,
      "mdUrl": {
        "found": false,
        "url": null
      },
      "linkTag": {
        "found": false,
        "url": null
      },
      "linkHeader": {
        "found": false,
        "url": null
      },
      "responseHeaders": {
        "contentSignal": null,
        "xMarkdownTokens": null,
        "vary": null
      },
      "frontmatter": {
        "present": false,
        "fields": [],
        "level": "none"
      },
      "level": "none"
    },
    "statusCode": 200
  },
  "extraction": {
    "title": "bandcamp explorer",
    "excerpt": "search (now fixed)",
    "byline": null,
    "siteName": null,
    "lang": null,
    "contentLength": 3306,
    "metadata": {
      "description": null,
      "ogTitle": null,
      "ogDescription": null,
      "ogImage": null,
      "ogType": null,
      "canonical": null,
      "lang": null,
      "schemas": [],
      "robotsMeta": null,
      "author": null,
      "generator": null,
      "markdownAlternateHref": null
    }
  },
  "markdown": "bandcamp explorer is there to give you **RSS feed** for every bandcamp genre/tag and every artist\n\n[search](https://bandcamp.k47.cz/?s) (now fixed)\n\ntags: [electronic](https://bandcamp.k47.cz/?tag=electronic*) [experimental](https://bandcamp.k47.cz/?tag=experimental*) [rock](https://bandcamp.k47.cz/?tag=rock*) [alternative](https://bandcamp.k47.cz/?tag=alternative*) [ambient](https://bandcamp.k47.cz/?tag=ambient*) [hip-hop/rap](https://bandcamp.k47.cz/?tag=hip-hop/rap*) [hip hop](https://bandcamp.k47.cz/?tag=hip%20hop*) [pop](https://bandcamp.k47.cz/?tag=pop*) [metal](https://bandcamp.k47.cz/?tag=metal*) [techno](https://bandcamp.k47.cz/?tag=techno*) [punk](https://bandcamp.k47.cz/?tag=punk*) [indie](https://bandcamp.k47.cz/?tag=indie*) [house](https://bandcamp.k47.cz/?tag=house*) [folk](https://bandcamp.k47.cz/?tag=folk*) [rap](https://bandcamp.k47.cz/?tag=rap*) [acoustic](https://bandcamp.k47.cz/?tag=acoustic*) [noise](https://bandcamp.k47.cz/?tag=noise*) [indie rock](https://bandcamp.k47.cz/?tag=indie%20rock*) [instrumental](https://bandcamp.k47.cz/?tag=instrumental*) [jazz](https://bandcamp.k47.cz/?tag=jazz*) [lo-fi](https://bandcamp.k47.cz/?tag=lo-fi*) [electronica](https://bandcamp.k47.cz/?tag=electronica*) [soundtrack](https://bandcamp.k47.cz/?tag=soundtrack*) [singer-songwriter](https://bandcamp.k47.cz/?tag=singer-songwriter*) [alternative rock](https://bandcamp.k47.cz/?tag=alternative%20rock*) [drone](https://bandcamp.k47.cz/?tag=drone*) [hardcore](https://bandcamp.k47.cz/?tag=hardcore*) [indie pop](https://bandcamp.k47.cz/?tag=indie%20pop*) [deep house](https://bandcamp.k47.cz/?tag=deep%20house*) [world](https://bandcamp.k47.cz/?tag=world*) [dance](https://bandcamp.k47.cz/?tag=dance*) [soul](https://bandcamp.k47.cz/?tag=soul*) [psychedelic](https://bandcamp.k47.cz/?tag=psychedelic*) [funk](https://bandcamp.k47.cz/?tag=funk*) [electro](https://bandcamp.k47.cz/?tag=electro*) [industrial](https://bandcamp.k47.cz/?tag=industrial*) [dark ambient](https://bandcamp.k47.cz/?tag=dark%20ambient*) [trap](https://bandcamp.k47.cz/?tag=trap*) [beats](https://bandcamp.k47.cz/?tag=beats*) [blues](https://bandcamp.k47.cz/?tag=blues*) [black metal](https://bandcamp.k47.cz/?tag=black%20metal*) [post-punk](https://bandcamp.k47.cz/?tag=post-punk*) [r&b](https://bandcamp.k47.cz/?tag=r%26b*) [dubstep](https://bandcamp.k47.cz/?tag=dubstep*) [experimental electronic](https://bandcamp.k47.cz/?tag=experimental%20electronic*) [edm](https://bandcamp.k47.cz/?tag=edm*) [drum & bass](https://bandcamp.k47.cz/?tag=drum%20%26%20bass*) [downtempo](https://bandcamp.k47.cz/?tag=downtempo*) [punk rock](https://bandcamp.k47.cz/?tag=punk%20rock*) [classical](https://bandcamp.k47.cz/?tag=classical*) [post-rock](https://bandcamp.k47.cz/?tag=post-rock*) [synthpop](https://bandcamp.k47.cz/?tag=synthpop*) [synthwave](https://bandcamp.k47.cz/?tag=synthwave*) [tech house](https://bandcamp.k47.cz/?tag=tech%20house*) [death metal](https://bandcamp.k47.cz/?tag=death%20metal*) [shoegaze](https://bandcamp.k47.cz/?tag=shoegaze*) [reggae](https://bandcamp.k47.cz/?tag=reggae*) [idm](https://bandcamp.k47.cz/?tag=idm*) [trance](https://bandcamp.k47.cz/?tag=trance*) [underground hip hop](https://bandcamp.k47.cz/?tag=underground%20hip%20hop*) [country](https://bandcamp.k47.cz/?tag=country*) [avant-garde](https://bandcamp.k47.cz/?tag=avant-garde*) [minimal](https://bandcamp.k47.cz/?tag=minimal*) [rock & roll](https://bandcamp.k47.cz/?tag=rock%20%26%20roll*) [pop rock](https://bandcamp.k47.cz/?tag=pop%20rock*) [underground](https://bandcamp.k47.cz/?tag=underground*) [chillout](https://bandcamp.k47.cz/?tag=chillout*) [instrumental hip-hop](https://bandcamp.k47.cz/?tag=instrumental%20hip-hop*) [electronic music](https://bandcamp.k47.cz/?tag=electronic%20music*) [chill](https://bandcamp.k47.cz/?tag=chill*) [progressive](https://bandcamp.k47.cz/?tag=progressive*) [dub](https://bandcamp.k47.cz/?tag=dub*) [piano](https://bandcamp.k47.cz/?tag=piano*) [indie folk](https://bandcamp.k47.cz/?tag=indie%20folk*) [emo](https://bandcamp.k47.cz/?tag=emo*) [hard rock](https://bandcamp.k47.cz/?tag=hard%20rock*) [ambient electronic](https://bandcamp.k47.cz/?tag=ambient%20electronic*) [dream pop](https://bandcamp.k47.cz/?tag=dream%20pop*) [folk rock](https://bandcamp.k47.cz/?tag=folk%20rock*) [pop punk](https://bandcamp.k47.cz/?tag=pop%20punk*) [garage](https://bandcamp.k47.cz/?tag=garage*) [trip hop](https://bandcamp.k47.cz/?tag=trip%20hop*) [vaporwave](https://bandcamp.k47.cz/?tag=vaporwave*) [americana](https://bandcamp.k47.cz/?tag=americana*) [synth](https://bandcamp.k47.cz/?tag=synth*) [bass](https://bandcamp.k47.cz/?tag=bass*) [r&b/soul](https://bandcamp.k47.cz/?tag=r%26b/soul*) [spoken word](https://bandcamp.k47.cz/?tag=spoken%20word*) [improvisation](https://bandcamp.k47.cz/?tag=improvisation*) [disco](https://bandcamp.k47.cz/?tag=disco*) [guitar](https://bandcamp.k47.cz/?tag=guitar*) [boom bap](https://bandcamp.k47.cz/?tag=boom%20bap*) [progressive rock](https://bandcamp.k47.cz/?tag=progressive%20rock*) [harsh noise](https://bandcamp.k47.cz/?tag=harsh%20noise*) [grunge](https://bandcamp.k47.cz/?tag=grunge*) [jungle](https://bandcamp.k47.cz/?tag=jungle*) [breakbeat](https://bandcamp.k47.cz/?tag=breakbeat*) [darkwave](https://bandcamp.k47.cz/?tag=darkwave*) [psychedelic rock](https://bandcamp.k47.cz/?tag=psychedelic%20rock*) [house music](https://bandcamp.k47.cz/?tag=house%20music*) [heavy metal](https://bandcamp.k47.cz/?tag=heavy%20metal*) [psytrance](https://bandcamp.k47.cz/?tag=psytrance*) [acid](https://bandcamp.k47.cz/?tag=acid*) [grindcore](https://bandcamp.k47.cz/?tag=grindcore*) [metalcore](https://bandcamp.k47.cz/?tag=metalcore*) [new wave](https://bandcamp.k47.cz/?tag=new%20wave*) [hardcore punk](https://bandcamp.k47.cz/?tag=hardcore%20punk*) [atmospheric](https://bandcamp.k47.cz/?tag=atmospheric*) [soundscape](https://bandcamp.k47.cz/?tag=soundscape*) [garage rock](https://bandcamp.k47.cz/?tag=garage%20rock*) [cinematic](https://bandcamp.k47.cz/?tag=cinematic*) [remix](https://bandcamp.k47.cz/?tag=remix*) [breaks](https://bandcamp.k47.cz/?tag=breaks*) [new age](https://bandcamp.k47.cz/?tag=new%20age*) [diy](https://bandcamp.k47.cz/?tag=diy*) [devotional](https://bandcamp.k47.cz/?tag=devotional*) [electropop](https://bandcamp.k47.cz/?tag=electropop*) [post-hardcore](https://bandcamp.k47.cz/?tag=post-hardcore*) [dark](https://bandcamp.k47.cz/?tag=dark*) [latin](https://bandcamp.k47.cz/?tag=latin*) [progressive house](https://bandcamp.k47.cz/?tag=progressive%20house*) [hard techno](https://bandcamp.k47.cz/?tag=hard%20techno*) [alternative pop](https://bandcamp.k47.cz/?tag=alternative%20pop*) [orchestral](https://bandcamp.k47.cz/?tag=orchestral*) [music](https://bandcamp.k47.cz/?tag=music*) [drum and bass](https://bandcamp.k47.cz/?tag=drum%20and%20bass*) [glitch](https://bandcamp.k47.cz/?tag=glitch*) [meditation](https://bandcamp.k47.cz/?tag=meditation*) [doom](https://bandcamp.k47.cz/?tag=doom*) [bass music](https://bandcamp.k47.cz/?tag=bass%20music*) [noise rock](https://bandcamp.k47.cz/?tag=noise%20rock*) [experimental rock](https://bandcamp.k47.cz/?tag=experimental%20rock*) [thrash metal](https://bandcamp.k47.cz/?tag=thrash%20metal*) [world music](https://bandcamp.k47.cz/?tag=world%20music*) [dnb](https://bandcamp.k47.cz/?tag=dnb*) [comedy](https://bandcamp.k47.cz/?tag=comedy*) [instrumentals](https://bandcamp.k47.cz/?tag=instrumentals*) [power pop](https://bandcamp.k47.cz/?tag=power%20pop*) [breakcore](https://bandcamp.k47.cz/?tag=breakcore*) [electroacoustic](https://bandcamp.k47.cz/?tag=electroacoustic*) [lofi hiphop](https://bandcamp.k47.cz/?tag=lofi%20hiphop*) [doom metal](https://bandcamp.k47.cz/?tag=doom%20metal*) [progressive metal](https://bandcamp.k47.cz/?tag=progressive%20metal*) [sound art](https://bandcamp.k47.cz/?tag=sound%20art*) [bedroom pop](https://bandcamp.k47.cz/?tag=bedroom%20pop*) [field recordings](https://bandcamp.k47.cz/?tag=field%20recordings*) [chillwave](https://bandcamp.k47.cz/?tag=chillwave*) [nu disco](https://bandcamp.k47.cz/?tag=nu%20disco*) [fusion](https://bandcamp.k47.cz/?tag=fusion*) [rnb](https://bandcamp.k47.cz/?tag=rnb*) [blues rock](https://bandcamp.k47.cz/?tag=blues%20rock*) [acoustic guitar](https://bandcamp.k47.cz/?tag=acoustic%20guitar*) [melodic](https://bandcamp.k47.cz/?tag=melodic*) [chiptune](https://bandcamp.k47.cz/?tag=chiptune*) [alternative hip-hop](https://bandcamp.k47.cz/?tag=alternative%20hip-hop*) [rave](https://bandcamp.k47.cz/?tag=rave*) [80s](https://bandcamp.k47.cz/?tag=80s*) [rap & hip-hop](https://bandcamp.k47.cz/?tag=rap%20%26%20hip-hop*) [dance music](https://bandcamp.k47.cz/?tag=dance%20music*) [dub techno](https://bandcamp.k47.cz/?tag=dub%20techno*) [hip hop instrumentals](https://bandcamp.k47.cz/?tag=hip%20hop%20instrumentals*) [roots](https://bandcamp.k47.cz/?tag=roots*) [drone ambient](https://bandcamp.k47.cz/?tag=drone%20ambient*) [ebm](https://bandcamp.k47.cz/?tag=ebm*) [art rock](https://bandcamp.k47.cz/?tag=art%20rock*) [stoner rock](https://bandcamp.k47.cz/?tag=stoner%20rock*) [neoclassical](https://bandcamp.k47.cz/?tag=neoclassical*) [alt-country](https://bandcamp.k47.cz/?tag=alt-country*) [neo-soul](https://bandcamp.k47.cz/?tag=neo-soul*) [afro house](https://bandcamp.k47.cz/?tag=afro%20house*) [goth](https://bandcamp.k47.cz/?tag=goth*) [harsh noise wall](https://bandcamp.k47.cz/?tag=harsh%20noise%20wall*) [free jazz](https://bandcamp.k47.cz/?tag=free%20jazz*) [deep](https://bandcamp.k47.cz/?tag=deep*) [vocal](https://bandcamp.k47.cz/?tag=vocal*) [experimental hip-hop](https://bandcamp.k47.cz/?tag=experimental%20hip-hop*) [retrowave](https://bandcamp.k47.cz/?tag=retrowave*) [dungeon synth](https://bandcamp.k47.cz/?tag=dungeon%20synth*) [minimal techno](https://bandcamp.k47.cz/?tag=minimal%20techno*) [soundscapes](https://bandcamp.k47.cz/?tag=soundscapes*) [grime](https://bandcamp.k47.cz/?tag=grime*) [christian](https://bandcamp.k47.cz/?tag=christian*) [power electronics](https://bandcamp.k47.cz/?tag=power%20electronics*) [songwriter](https://bandcamp.k47.cz/?tag=songwriter*) [groove](https://bandcamp.k47.cz/?tag=groove*) [math rock](https://bandcamp.k47.cz/?tag=math%20rock*) [contemporary](https://bandcamp.k47.cz/?tag=contemporary*) [future bass](https://bandcamp.k47.cz/?tag=future%20bass*) [sludge](https://bandcamp.k47.cz/?tag=sludge*) [poetry](https://bandcamp.k47.cz/?tag=poetry*) [underground rap](https://bandcamp.k47.cz/?tag=underground%20rap*) [folk pop](https://bandcamp.k47.cz/?tag=folk%20pop*) [audiobooks](https://bandcamp.k47.cz/?tag=audiobooks*) [chillhop](https://bandcamp.k47.cz/?tag=chillhop*) [uk garage](https://bandcamp.k47.cz/?tag=uk%20garage*) [beat tape](https://bandcamp.k47.cz/?tag=beat%20tape*) [dancehall](https://bandcamp.k47.cz/?tag=dancehall*) [industrial techno](https://bandcamp.k47.cz/?tag=industrial%20techno*) [abstract](https://bandcamp.k47.cz/?tag=abstract*) [ska](https://bandcamp.k47.cz/?tag=ska*) [deep techno](https://bandcamp.k47.cz/?tag=deep%20techno*) [space](https://bandcamp.k47.cz/?tag=space*) [video game music](https://bandcamp.k47.cz/?tag=video%20game%20music*) [folk punk](https://bandcamp.k47.cz/?tag=folk%20punk*) [free improvisation](https://bandcamp.k47.cz/?tag=free%20improvisation*) [deep tech](https://bandcamp.k47.cz/?tag=deep%20tech*) [epic](https://bandcamp.k47.cz/?tag=epic*) [synthesizer](https://bandcamp.k47.cz/?tag=synthesizer*) [stoner](https://bandcamp.k47.cz/?tag=stoner*) [club](https://bandcamp.k47.cz/?tag=club*) [plunderphonics](https://bandcamp.k47.cz/?tag=plunderphonics*) [deathcore](https://bandcamp.k47.cz/?tag=deathcore*) [classic rock](https://bandcamp.k47.cz/?tag=classic%20rock*) [independent](https://bandcamp.k47.cz/?tag=independent*) [jazz fusion](https://bandcamp.k47.cz/?tag=jazz%20fusion*) [space rock](https://bandcamp.k47.cz/?tag=space%20rock*) [afrobeat](https://bandcamp.k47.cz/?tag=afrobeat*) [melodic techno](https://bandcamp.k47.cz/?tag=melodic%20techno*) [film music](https://bandcamp.k47.cz/?tag=film%20music*) [video game](https://bandcamp.k47.cz/?tag=video%20game*) [spiritual](https://bandcamp.k47.cz/?tag=spiritual*) [gospel](https://bandcamp.k47.cz/?tag=gospel*) [gothic](https://bandcamp.k47.cz/?tag=gothic*) [live](https://bandcamp.k47.cz/?tag=live*) [surf](https://bandcamp.k47.cz/?tag=surf*) [acoustic rock](https://bandcamp.k47.cz/?tag=acoustic%20rock*) [hyperpop](https://bandcamp.k47.cz/?tag=hyperpop*) [post-metal](https://bandcamp.k47.cz/?tag=post-metal*) [phonk](https://bandcamp.k47.cz/?tag=phonk*) [krautrock](https://bandcamp.k47.cz/?tag=krautrock*) [garage punk](https://bandcamp.k47.cz/?tag=garage%20punk*) [love](https://bandcamp.k47.cz/?tag=love*) [noisecore](https://bandcamp.k47.cz/?tag=noisecore*) [musique concrete](https://bandcamp.k47.cz/?tag=musique%20concrete*) [samples](https://bandcamp.k47.cz/?tag=samples*) [retro](https://bandcamp.k47.cz/?tag=retro*) [funky](https://bandcamp.k47.cz/?tag=funky*) [horror](https://bandcamp.k47.cz/?tag=horror*) [podcasts](https://bandcamp.k47.cz/?tag=podcasts*) [soulful house](https://bandcamp.k47.cz/?tag=soulful%20house*) [witch house](https://bandcamp.k47.cz/?tag=witch%20house*) [field recording](https://bandcamp.k47.cz/?tag=field%20recording*) [psych](https://bandcamp.k47.cz/?tag=psych*) [remixes](https://bandcamp.k47.cz/?tag=remixes*) [beat](https://bandcamp.k47.cz/?tag=beat*) [screamo](https://bandcamp.k47.cz/?tag=screamo*) [powerviolence](https://bandcamp.k47.cz/?tag=powerviolence*) [prog](https://bandcamp.k47.cz/?tag=prog*) [atmospheric black metal](https://bandcamp.k47.cz/?tag=atmospheric%20black%20metal*) [soulful](https://bandcamp.k47.cz/?tag=soulful*) [acid techno](https://bandcamp.k47.cz/?tag=acid%20techno*) [psychedelic trance](https://bandcamp.k47.cz/?tag=psychedelic%20trance*) [microhouse](https://bandcamp.k47.cz/?tag=microhouse*) [experimental pop](https://bandcamp.k47.cz/?tag=experimental%20pop*) [wave](https://bandcamp.k47.cz/?tag=wave*) [cyberpunk](https://bandcamp.k47.cz/?tag=cyberpunk*) [christmas](https://bandcamp.k47.cz/?tag=christmas*) [indie dance](https://bandcamp.k47.cz/?tag=indie%20dance*) [jam](https://bandcamp.k47.cz/?tag=jam*) [dark techno](https://bandcamp.k47.cz/?tag=dark%20techno*) [minimalism](https://bandcamp.k47.cz/?tag=minimalism*) [improvised music](https://bandcamp.k47.cz/?tag=improvised%20music*) [modern classical](https://bandcamp.k47.cz/?tag=modern%20classical*) [old school](https://bandcamp.k47.cz/?tag=old%20school*) [sad](https://bandcamp.k47.cz/?tag=sad*) [djent](https://bandcamp.k47.cz/?tag=djent*) [mashup](https://bandcamp.k47.cz/?tag=mashup*) [lounge](https://bandcamp.k47.cz/?tag=lounge*) [instrumental rock](https://bandcamp.k47.cz/?tag=instrumental%20rock*) [trap music](https://bandcamp.k47.cz/?tag=trap%20music*) [coldwave](https://bandcamp.k47.cz/?tag=coldwave*) [jazzy](https://bandcamp.k47.cz/?tag=jazzy*) [techno and variations](https://bandcamp.k47.cz/?tag=techno%20and%20variations*) [glitch hop](https://bandcamp.k47.cz/?tag=glitch%20hop*) [female vocals](https://bandcamp.k47.cz/?tag=female%20vocals*) [raw black metal](https://bandcamp.k47.cz/?tag=raw%20black%20metal*) [thrash](https://bandcamp.k47.cz/?tag=thrash*) [bedroom](https://bandcamp.k47.cz/?tag=bedroom*) [contemporary classical](https://bandcamp.k47.cz/?tag=contemporary%20classical*) [hnw](https://bandcamp.k47.cz/?tag=hnw*) [bluegrass](https://bandcamp.k47.cz/?tag=bluegrass*) [freestyle](https://bandcamp.k47.cz/?tag=freestyle*) [easy listening](https://bandcamp.k47.cz/?tag=easy%20listening*) [goregrind](https://bandcamp.k47.cz/?tag=goregrind*) [heavy](https://bandcamp.k47.cz/?tag=heavy*) [crust](https://bandcamp.k47.cz/?tag=crust*) [prog rock](https://bandcamp.k47.cz/?tag=prog%20rock*) [weird](https://bandcamp.k47.cz/?tag=weird*) [drums](https://bandcamp.k47.cz/?tag=drums*) [country rock](https://bandcamp.k47.cz/?tag=country%20rock*) [tribal](https://bandcamp.k47.cz/?tag=tribal*) [kids](https://bandcamp.k47.cz/?tag=kids*) [electro house](https://bandcamp.k47.cz/?tag=electro%20house*) [8bit](https://bandcamp.k47.cz/?tag=8bit*) [drum n bass](https://bandcamp.k47.cz/?tag=drum%20n%20bass*) [noise pop](https://bandcamp.k47.cz/?tag=noise%20pop*) [emotional](https://bandcamp.k47.cz/?tag=emotional*) [improv](https://bandcamp.k47.cz/?tag=improv*) [meditation music](https://bandcamp.k47.cz/?tag=meditation%20music*) [90s](https://bandcamp.k47.cz/?tag=90s*) · [more tags...](https://bandcamp.k47.cz/?tags)\n\n*7077000 albums + 4834000 singles = 57400000 tracks\n1112000 [creative commons](https://bandcamp.k47.cz/?tag=creative%20commons**) releases\n481 years and 171236 days of music in total\n*\n",
  "fullPageMarkdown": "bandcamp explorer # [bandcamp explorer](https://bandcamp.k47.cz/?)  [🔍︎](https://bandcamp.k47.cz/?s)\nbandcamp explorer is there to give you **RSS feed** for every bandcamp genre/tag and every artist\n\n[search](https://bandcamp.k47.cz/?s) (now fixed)\n\ntags: [electronic](https://bandcamp.k47.cz/?tag=electronic*) [experimental](https://bandcamp.k47.cz/?tag=experimental*) [rock](https://bandcamp.k47.cz/?tag=rock*) [alternative](https://bandcamp.k47.cz/?tag=alternative*) [ambient](https://bandcamp.k47.cz/?tag=ambient*) [hip-hop/rap](https://bandcamp.k47.cz/?tag=hip-hop/rap*) [hip hop](https://bandcamp.k47.cz/?tag=hip%20hop*) [pop](https://bandcamp.k47.cz/?tag=pop*) [metal](https://bandcamp.k47.cz/?tag=metal*) [techno](https://bandcamp.k47.cz/?tag=techno*) [punk](https://bandcamp.k47.cz/?tag=punk*) [indie](https://bandcamp.k47.cz/?tag=indie*) [house](https://bandcamp.k47.cz/?tag=house*) [folk](https://bandcamp.k47.cz/?tag=folk*) [rap](https://bandcamp.k47.cz/?tag=rap*) [acoustic](https://bandcamp.k47.cz/?tag=acoustic*) [noise](https://bandcamp.k47.cz/?tag=noise*) [indie rock](https://bandcamp.k47.cz/?tag=indie%20rock*) [instrumental](https://bandcamp.k47.cz/?tag=instrumental*) [jazz](https://bandcamp.k47.cz/?tag=jazz*) [lo-fi](https://bandcamp.k47.cz/?tag=lo-fi*) [electronica](https://bandcamp.k47.cz/?tag=electronica*) [soundtrack](https://bandcamp.k47.cz/?tag=soundtrack*) [singer-songwriter](https://bandcamp.k47.cz/?tag=singer-songwriter*) [alternative rock](https://bandcamp.k47.cz/?tag=alternative%20rock*) [drone](https://bandcamp.k47.cz/?tag=drone*) [hardcore](https://bandcamp.k47.cz/?tag=hardcore*) [indie pop](https://bandcamp.k47.cz/?tag=indie%20pop*) [deep house](https://bandcamp.k47.cz/?tag=deep%20house*) [world](https://bandcamp.k47.cz/?tag=world*) [dance](https://bandcamp.k47.cz/?tag=dance*) [soul](https://bandcamp.k47.cz/?tag=soul*) [psychedelic](https://bandcamp.k47.cz/?tag=psychedelic*) [funk](https://bandcamp.k47.cz/?tag=funk*) [electro](https://bandcamp.k47.cz/?tag=electro*) [industrial](https://bandcamp.k47.cz/?tag=industrial*) [dark ambient](https://bandcamp.k47.cz/?tag=dark%20ambient*) [trap](https://bandcamp.k47.cz/?tag=trap*) [beats](https://bandcamp.k47.cz/?tag=beats*) [blues](https://bandcamp.k47.cz/?tag=blues*) [black metal](https://bandcamp.k47.cz/?tag=black%20metal*) [post-punk](https://bandcamp.k47.cz/?tag=post-punk*) [r&b](https://bandcamp.k47.cz/?tag=r%26b*) [dubstep](https://bandcamp.k47.cz/?tag=dubstep*) [experimental electronic](https://bandcamp.k47.cz/?tag=experimental%20electronic*) [edm](https://bandcamp.k47.cz/?tag=edm*) [drum & bass](https://bandcamp.k47.cz/?tag=drum%20%26%20bass*) [downtempo](https://bandcamp.k47.cz/?tag=downtempo*) [punk rock](https://bandcamp.k47.cz/?tag=punk%20rock*) [classical](https://bandcamp.k47.cz/?tag=classical*) [post-rock](https://bandcamp.k47.cz/?tag=post-rock*) [synthpop](https://bandcamp.k47.cz/?tag=synthpop*) [synthwave](https://bandcamp.k47.cz/?tag=synthwave*) [tech house](https://bandcamp.k47.cz/?tag=tech%20house*) [death metal](https://bandcamp.k47.cz/?tag=death%20metal*) [shoegaze](https://bandcamp.k47.cz/?tag=shoegaze*) [reggae](https://bandcamp.k47.cz/?tag=reggae*) [idm](https://bandcamp.k47.cz/?tag=idm*) [trance](https://bandcamp.k47.cz/?tag=trance*) [underground hip hop](https://bandcamp.k47.cz/?tag=underground%20hip%20hop*) [country](https://bandcamp.k47.cz/?tag=country*) [avant-garde](https://bandcamp.k47.cz/?tag=avant-garde*) [minimal](https://bandcamp.k47.cz/?tag=minimal*) [rock & roll](https://bandcamp.k47.cz/?tag=rock%20%26%20roll*) [pop rock](https://bandcamp.k47.cz/?tag=pop%20rock*) [underground](https://bandcamp.k47.cz/?tag=underground*) [chillout](https://bandcamp.k47.cz/?tag=chillout*) [instrumental hip-hop](https://bandcamp.k47.cz/?tag=instrumental%20hip-hop*) [electronic music](https://bandcamp.k47.cz/?tag=electronic%20music*) [chill](https://bandcamp.k47.cz/?tag=chill*) [progressive](https://bandcamp.k47.cz/?tag=progressive*) [dub](https://bandcamp.k47.cz/?tag=dub*) [piano](https://bandcamp.k47.cz/?tag=piano*) [indie folk](https://bandcamp.k47.cz/?tag=indie%20folk*) [emo](https://bandcamp.k47.cz/?tag=emo*) [hard rock](https://bandcamp.k47.cz/?tag=hard%20rock*) [ambient electronic](https://bandcamp.k47.cz/?tag=ambient%20electronic*) [dream pop](https://bandcamp.k47.cz/?tag=dream%20pop*) [folk rock](https://bandcamp.k47.cz/?tag=folk%20rock*) [pop punk](https://bandcamp.k47.cz/?tag=pop%20punk*) [garage](https://bandcamp.k47.cz/?tag=garage*) [trip hop](https://bandcamp.k47.cz/?tag=trip%20hop*) [vaporwave](https://bandcamp.k47.cz/?tag=vaporwave*) [americana](https://bandcamp.k47.cz/?tag=americana*) [synth](https://bandcamp.k47.cz/?tag=synth*) [bass](https://bandcamp.k47.cz/?tag=bass*) [r&b/soul](https://bandcamp.k47.cz/?tag=r%26b/soul*) [spoken word](https://bandcamp.k47.cz/?tag=spoken%20word*) [improvisation](https://bandcamp.k47.cz/?tag=improvisation*) [disco](https://bandcamp.k47.cz/?tag=disco*) [guitar](https://bandcamp.k47.cz/?tag=guitar*) [boom bap](https://bandcamp.k47.cz/?tag=boom%20bap*) [progressive rock](https://bandcamp.k47.cz/?tag=progressive%20rock*) [harsh noise](https://bandcamp.k47.cz/?tag=harsh%20noise*) [grunge](https://bandcamp.k47.cz/?tag=grunge*) [jungle](https://bandcamp.k47.cz/?tag=jungle*) [breakbeat](https://bandcamp.k47.cz/?tag=breakbeat*) [darkwave](https://bandcamp.k47.cz/?tag=darkwave*) [psychedelic rock](https://bandcamp.k47.cz/?tag=psychedelic%20rock*) [house music](https://bandcamp.k47.cz/?tag=house%20music*) [heavy metal](https://bandcamp.k47.cz/?tag=heavy%20metal*) [psytrance](https://bandcamp.k47.cz/?tag=psytrance*) [acid](https://bandcamp.k47.cz/?tag=acid*) [grindcore](https://bandcamp.k47.cz/?tag=grindcore*) [metalcore](https://bandcamp.k47.cz/?tag=metalcore*) [new wave](https://bandcamp.k47.cz/?tag=new%20wave*) [hardcore punk](https://bandcamp.k47.cz/?tag=hardcore%20punk*) [atmospheric](https://bandcamp.k47.cz/?tag=atmospheric*) [soundscape](https://bandcamp.k47.cz/?tag=soundscape*) [garage rock](https://bandcamp.k47.cz/?tag=garage%20rock*) [cinematic](https://bandcamp.k47.cz/?tag=cinematic*) [remix](https://bandcamp.k47.cz/?tag=remix*) [breaks](https://bandcamp.k47.cz/?tag=breaks*) [new age](https://bandcamp.k47.cz/?tag=new%20age*) [diy](https://bandcamp.k47.cz/?tag=diy*) [devotional](https://bandcamp.k47.cz/?tag=devotional*) [electropop](https://bandcamp.k47.cz/?tag=electropop*) [post-hardcore](https://bandcamp.k47.cz/?tag=post-hardcore*) [dark](https://bandcamp.k47.cz/?tag=dark*) [latin](https://bandcamp.k47.cz/?tag=latin*) [progressive house](https://bandcamp.k47.cz/?tag=progressive%20house*) [hard techno](https://bandcamp.k47.cz/?tag=hard%20techno*) [alternative pop](https://bandcamp.k47.cz/?tag=alternative%20pop*) [orchestral](https://bandcamp.k47.cz/?tag=orchestral*) [music](https://bandcamp.k47.cz/?tag=music*) [drum and bass](https://bandcamp.k47.cz/?tag=drum%20and%20bass*) [glitch](https://bandcamp.k47.cz/?tag=glitch*) [meditation](https://bandcamp.k47.cz/?tag=meditation*) [doom](https://bandcamp.k47.cz/?tag=doom*) [bass music](https://bandcamp.k47.cz/?tag=bass%20music*) [noise rock](https://bandcamp.k47.cz/?tag=noise%20rock*) [experimental rock](https://bandcamp.k47.cz/?tag=experimental%20rock*) [thrash metal](https://bandcamp.k47.cz/?tag=thrash%20metal*) [world music](https://bandcamp.k47.cz/?tag=world%20music*) [dnb](https://bandcamp.k47.cz/?tag=dnb*) [comedy](https://bandcamp.k47.cz/?tag=comedy*) [instrumentals](https://bandcamp.k47.cz/?tag=instrumentals*) [power pop](https://bandcamp.k47.cz/?tag=power%20pop*) [breakcore](https://bandcamp.k47.cz/?tag=breakcore*) [electroacoustic](https://bandcamp.k47.cz/?tag=electroacoustic*) [lofi hiphop](https://bandcamp.k47.cz/?tag=lofi%20hiphop*) [doom metal](https://bandcamp.k47.cz/?tag=doom%20metal*) [progressive metal](https://bandcamp.k47.cz/?tag=progressive%20metal*) [sound art](https://bandcamp.k47.cz/?tag=sound%20art*) [bedroom pop](https://bandcamp.k47.cz/?tag=bedroom%20pop*) [field recordings](https://bandcamp.k47.cz/?tag=field%20recordings*) [chillwave](https://bandcamp.k47.cz/?tag=chillwave*) [nu disco](https://bandcamp.k47.cz/?tag=nu%20disco*) [fusion](https://bandcamp.k47.cz/?tag=fusion*) [rnb](https://bandcamp.k47.cz/?tag=rnb*) [blues rock](https://bandcamp.k47.cz/?tag=blues%20rock*) [acoustic guitar](https://bandcamp.k47.cz/?tag=acoustic%20guitar*) [melodic](https://bandcamp.k47.cz/?tag=melodic*) [chiptune](https://bandcamp.k47.cz/?tag=chiptune*) [alternative hip-hop](https://bandcamp.k47.cz/?tag=alternative%20hip-hop*) [rave](https://bandcamp.k47.cz/?tag=rave*) [80s](https://bandcamp.k47.cz/?tag=80s*) [rap & hip-hop](https://bandcamp.k47.cz/?tag=rap%20%26%20hip-hop*) [dance music](https://bandcamp.k47.cz/?tag=dance%20music*) [dub techno](https://bandcamp.k47.cz/?tag=dub%20techno*) [hip hop instrumentals](https://bandcamp.k47.cz/?tag=hip%20hop%20instrumentals*) [roots](https://bandcamp.k47.cz/?tag=roots*) [drone ambient](https://bandcamp.k47.cz/?tag=drone%20ambient*) [ebm](https://bandcamp.k47.cz/?tag=ebm*) [art rock](https://bandcamp.k47.cz/?tag=art%20rock*) [stoner rock](https://bandcamp.k47.cz/?tag=stoner%20rock*) [neoclassical](https://bandcamp.k47.cz/?tag=neoclassical*) [alt-country](https://bandcamp.k47.cz/?tag=alt-country*) [neo-soul](https://bandcamp.k47.cz/?tag=neo-soul*) [afro house](https://bandcamp.k47.cz/?tag=afro%20house*) [goth](https://bandcamp.k47.cz/?tag=goth*) [harsh noise wall](https://bandcamp.k47.cz/?tag=harsh%20noise%20wall*) [free jazz](https://bandcamp.k47.cz/?tag=free%20jazz*) [deep](https://bandcamp.k47.cz/?tag=deep*) [vocal](https://bandcamp.k47.cz/?tag=vocal*) [experimental hip-hop](https://bandcamp.k47.cz/?tag=experimental%20hip-hop*) [retrowave](https://bandcamp.k47.cz/?tag=retrowave*) [dungeon synth](https://bandcamp.k47.cz/?tag=dungeon%20synth*) [minimal techno](https://bandcamp.k47.cz/?tag=minimal%20techno*) [soundscapes](https://bandcamp.k47.cz/?tag=soundscapes*) [grime](https://bandcamp.k47.cz/?tag=grime*) [christian](https://bandcamp.k47.cz/?tag=christian*) [power electronics](https://bandcamp.k47.cz/?tag=power%20electronics*) [songwriter](https://bandcamp.k47.cz/?tag=songwriter*) [groove](https://bandcamp.k47.cz/?tag=groove*) [math rock](https://bandcamp.k47.cz/?tag=math%20rock*) [contemporary](https://bandcamp.k47.cz/?tag=contemporary*) [future bass](https://bandcamp.k47.cz/?tag=future%20bass*) [sludge](https://bandcamp.k47.cz/?tag=sludge*) [poetry](https://bandcamp.k47.cz/?tag=poetry*) [underground rap](https://bandcamp.k47.cz/?tag=underground%20rap*) [folk pop](https://bandcamp.k47.cz/?tag=folk%20pop*) [audiobooks](https://bandcamp.k47.cz/?tag=audiobooks*) [chillhop](https://bandcamp.k47.cz/?tag=chillhop*) [uk garage](https://bandcamp.k47.cz/?tag=uk%20garage*) [beat tape](https://bandcamp.k47.cz/?tag=beat%20tape*) [dancehall](https://bandcamp.k47.cz/?tag=dancehall*) [industrial techno](https://bandcamp.k47.cz/?tag=industrial%20techno*) [abstract](https://bandcamp.k47.cz/?tag=abstract*) [ska](https://bandcamp.k47.cz/?tag=ska*) [deep techno](https://bandcamp.k47.cz/?tag=deep%20techno*) [space](https://bandcamp.k47.cz/?tag=space*) [video game music](https://bandcamp.k47.cz/?tag=video%20game%20music*) [folk punk](https://bandcamp.k47.cz/?tag=folk%20punk*) [free improvisation](https://bandcamp.k47.cz/?tag=free%20improvisation*) [deep tech](https://bandcamp.k47.cz/?tag=deep%20tech*) [epic](https://bandcamp.k47.cz/?tag=epic*) [synthesizer](https://bandcamp.k47.cz/?tag=synthesizer*) [stoner](https://bandcamp.k47.cz/?tag=stoner*) [club](https://bandcamp.k47.cz/?tag=club*) [plunderphonics](https://bandcamp.k47.cz/?tag=plunderphonics*) [deathcore](https://bandcamp.k47.cz/?tag=deathcore*) [classic rock](https://bandcamp.k47.cz/?tag=classic%20rock*) [independent](https://bandcamp.k47.cz/?tag=independent*) [jazz fusion](https://bandcamp.k47.cz/?tag=jazz%20fusion*) [space rock](https://bandcamp.k47.cz/?tag=space%20rock*) [afrobeat](https://bandcamp.k47.cz/?tag=afrobeat*) [melodic techno](https://bandcamp.k47.cz/?tag=melodic%20techno*) [film music](https://bandcamp.k47.cz/?tag=film%20music*) [video game](https://bandcamp.k47.cz/?tag=video%20game*) [spiritual](https://bandcamp.k47.cz/?tag=spiritual*) [gospel](https://bandcamp.k47.cz/?tag=gospel*) [gothic](https://bandcamp.k47.cz/?tag=gothic*) [live](https://bandcamp.k47.cz/?tag=live*) [surf](https://bandcamp.k47.cz/?tag=surf*) [acoustic rock](https://bandcamp.k47.cz/?tag=acoustic%20rock*) [hyperpop](https://bandcamp.k47.cz/?tag=hyperpop*) [post-metal](https://bandcamp.k47.cz/?tag=post-metal*) [phonk](https://bandcamp.k47.cz/?tag=phonk*) [krautrock](https://bandcamp.k47.cz/?tag=krautrock*) [garage punk](https://bandcamp.k47.cz/?tag=garage%20punk*) [love](https://bandcamp.k47.cz/?tag=love*) [noisecore](https://bandcamp.k47.cz/?tag=noisecore*) [musique concrete](https://bandcamp.k47.cz/?tag=musique%20concrete*) [samples](https://bandcamp.k47.cz/?tag=samples*) [retro](https://bandcamp.k47.cz/?tag=retro*) [funky](https://bandcamp.k47.cz/?tag=funky*) [horror](https://bandcamp.k47.cz/?tag=horror*) [podcasts](https://bandcamp.k47.cz/?tag=podcasts*) [soulful house](https://bandcamp.k47.cz/?tag=soulful%20house*) [witch house](https://bandcamp.k47.cz/?tag=witch%20house*) [field recording](https://bandcamp.k47.cz/?tag=field%20recording*) [psych](https://bandcamp.k47.cz/?tag=psych*) [remixes](https://bandcamp.k47.cz/?tag=remixes*) [beat](https://bandcamp.k47.cz/?tag=beat*) [screamo](https://bandcamp.k47.cz/?tag=screamo*) [powerviolence](https://bandcamp.k47.cz/?tag=powerviolence*) [prog](https://bandcamp.k47.cz/?tag=prog*) [atmospheric black metal](https://bandcamp.k47.cz/?tag=atmospheric%20black%20metal*) [soulful](https://bandcamp.k47.cz/?tag=soulful*) [acid techno](https://bandcamp.k47.cz/?tag=acid%20techno*) [psychedelic trance](https://bandcamp.k47.cz/?tag=psychedelic%20trance*) [microhouse](https://bandcamp.k47.cz/?tag=microhouse*) [experimental pop](https://bandcamp.k47.cz/?tag=experimental%20pop*) [wave](https://bandcamp.k47.cz/?tag=wave*) [cyberpunk](https://bandcamp.k47.cz/?tag=cyberpunk*) [christmas](https://bandcamp.k47.cz/?tag=christmas*) [indie dance](https://bandcamp.k47.cz/?tag=indie%20dance*) [jam](https://bandcamp.k47.cz/?tag=jam*) [dark techno](https://bandcamp.k47.cz/?tag=dark%20techno*) [minimalism](https://bandcamp.k47.cz/?tag=minimalism*) [improvised music](https://bandcamp.k47.cz/?tag=improvised%20music*) [modern classical](https://bandcamp.k47.cz/?tag=modern%20classical*) [old school](https://bandcamp.k47.cz/?tag=old%20school*) [sad](https://bandcamp.k47.cz/?tag=sad*) [djent](https://bandcamp.k47.cz/?tag=djent*) [mashup](https://bandcamp.k47.cz/?tag=mashup*) [lounge](https://bandcamp.k47.cz/?tag=lounge*) [instrumental rock](https://bandcamp.k47.cz/?tag=instrumental%20rock*) [trap music](https://bandcamp.k47.cz/?tag=trap%20music*) [coldwave](https://bandcamp.k47.cz/?tag=coldwave*) [jazzy](https://bandcamp.k47.cz/?tag=jazzy*) [techno and variations](https://bandcamp.k47.cz/?tag=techno%20and%20variations*) [glitch hop](https://bandcamp.k47.cz/?tag=glitch%20hop*) [female vocals](https://bandcamp.k47.cz/?tag=female%20vocals*) [raw black metal](https://bandcamp.k47.cz/?tag=raw%20black%20metal*) [thrash](https://bandcamp.k47.cz/?tag=thrash*) [bedroom](https://bandcamp.k47.cz/?tag=bedroom*) [contemporary classical](https://bandcamp.k47.cz/?tag=contemporary%20classical*) [hnw](https://bandcamp.k47.cz/?tag=hnw*) [bluegrass](https://bandcamp.k47.cz/?tag=bluegrass*) [freestyle](https://bandcamp.k47.cz/?tag=freestyle*) [easy listening](https://bandcamp.k47.cz/?tag=easy%20listening*) [goregrind](https://bandcamp.k47.cz/?tag=goregrind*) [heavy](https://bandcamp.k47.cz/?tag=heavy*) [crust](https://bandcamp.k47.cz/?tag=crust*) [prog rock](https://bandcamp.k47.cz/?tag=prog%20rock*) [weird](https://bandcamp.k47.cz/?tag=weird*) [drums](https://bandcamp.k47.cz/?tag=drums*) [country rock](https://bandcamp.k47.cz/?tag=country%20rock*) [tribal](https://bandcamp.k47.cz/?tag=tribal*) [kids](https://bandcamp.k47.cz/?tag=kids*) [electro house](https://bandcamp.k47.cz/?tag=electro%20house*) [8bit](https://bandcamp.k47.cz/?tag=8bit*) [drum n bass](https://bandcamp.k47.cz/?tag=drum%20n%20bass*) [noise pop](https://bandcamp.k47.cz/?tag=noise%20pop*) [emotional](https://bandcamp.k47.cz/?tag=emotional*) [improv](https://bandcamp.k47.cz/?tag=improv*) [meditation music](https://bandcamp.k47.cz/?tag=meditation%20music*) [90s](https://bandcamp.k47.cz/?tag=90s*) · [more tags...](https://bandcamp.k47.cz/?tags)\n\n*7077000 albums + 4834000 singles = 57400000 tracks\n1112000 [creative commons](https://bandcamp.k47.cz/?tag=creative%20commons**) releases\n481 years and 171236 days of music in total\n*\n",
  "markdownStats": {
    "images": 0,
    "links": 303,
    "tables": 0,
    "codeBlocks": 0,
    "headings": 0
  },
  "tokens": {
    "htmlTokens": 5574,
    "markdownTokens": 5637,
    "reduction": -63,
    "reductionPercent": -1
  },
  "score": {
    "score": 46,
    "grade": "D",
    "dimensions": {
      "semanticHtml": {
        "score": 70,
        "weight": 20,
        "grade": "C",
        "checks": {
          "uses_article_or_main": {
            "score": 0,
            "weight": 20,
            "details": "Missing <article> and <main> elements"
          },
          "proper_heading_hierarchy": {
            "score": 100,
            "weight": 25,
            "details": "Clean heading hierarchy"
          },
          "semantic_elements": {
            "score": 50,
            "weight": 20,
            "details": "No divs or semantic elements found"
          },
          "meaningful_alt_texts": {
            "score": 100,
            "weight": 15,
            "details": "No images found"
          },
          "low_div_nesting": {
            "score": 100,
            "weight": 20,
            "details": "No divs found"
          }
        }
      },
      "contentEfficiency": {
        "score": 54,
        "weight": 25,
        "grade": "D",
        "checks": {
          "token_reduction_ratio": {
            "score": 0,
            "weight": 40,
            "details": "-1% token reduction (HTML→Markdown)"
          },
          "content_to_noise_ratio": {
            "score": 80,
            "weight": 30,
            "details": "Content ratio: 23.6% (3306 content chars / 14022 HTML bytes)"
          },
          "minimal_inline_styles": {
            "score": 100,
            "weight": 15,
            "details": "1/327 elements with inline styles (0.3%)"
          },
          "reasonable_page_weight": {
            "score": 100,
            "weight": 15,
            "details": "HTML size: 14KB"
          }
        }
      },
      "aiDiscoverability": {
        "score": 15,
        "weight": 25,
        "grade": "F",
        "checks": {
          "has_llms_txt": {
            "score": 0,
            "weight": 20,
            "details": "No llms.txt found"
          },
          "has_robots_txt": {
            "score": 0,
            "weight": 10,
            "details": "No robots.txt found"
          },
          "robots_allows_ai_bots": {
            "score": 100,
            "weight": 15,
            "details": "No robots.txt — AI bots allowed by default"
          },
          "has_sitemap": {
            "score": 0,
            "weight": 10,
            "details": "No sitemap found"
          },
          "supports_markdown_negotiation": {
            "score": 0,
            "weight": 25,
            "details": "No Markdown for Agents support detected"
          },
          "has_content_signals": {
            "score": 0,
            "weight": 20,
            "details": "No Content-Signal found (robots.txt or HTTP headers)"
          }
        }
      },
      "structuredData": {
        "score": 0,
        "weight": 15,
        "grade": "F",
        "checks": {
          "has_schema_org": {
            "score": 0,
            "weight": 30,
            "details": "No JSON-LD / Schema.org found"
          },
          "has_open_graph": {
            "score": 0,
            "weight": 25,
            "details": "0/3 OG tags present"
          },
          "has_meta_description": {
            "score": 0,
            "weight": 20,
            "details": "No meta description"
          },
          "has_canonical_url": {
            "score": 0,
            "weight": 15,
            "details": "No canonical URL"
          },
          "has_lang_attribute": {
            "score": 0,
            "weight": 10,
            "details": "No lang attribute on <html>"
          }
        }
      },
      "accessibility": {
        "score": 100,
        "weight": 15,
        "grade": "A",
        "checks": {
          "content_without_js": {
            "score": 100,
            "weight": 40,
            "details": "Content available without JavaScript"
          },
          "reasonable_page_size": {
            "score": 100,
            "weight": 30,
            "details": "Page size: 14KB"
          },
          "fast_content_position": {
            "score": 100,
            "weight": 30,
            "details": "Main content starts at 10% of HTML"
          }
        }
      }
    }
  },
  "recommendations": [
    {
      "id": "add_llms_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_llms_txt.title",
      "descriptionKey": "rec.add_llms_txt.description",
      "howToKey": "rec.add_llms_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 10,
      "checkScore": 0,
      "checkDetails": "No llms.txt found"
    },
    {
      "id": "add_article_main",
      "priority": "critical",
      "category": "semanticHtml",
      "titleKey": "rec.add_article_main.title",
      "descriptionKey": "rec.add_article_main.description",
      "howToKey": "rec.add_article_main.howto",
      "effort": "quick-win",
      "estimatedImpact": 8,
      "checkScore": 0,
      "checkDetails": "Missing <article> and <main> elements"
    },
    {
      "id": "improve_token_efficiency",
      "priority": "critical",
      "category": "contentEfficiency",
      "titleKey": "rec.improve_token_efficiency.title",
      "descriptionKey": "rec.improve_token_efficiency.description",
      "howToKey": "rec.improve_token_efficiency.howto",
      "effort": "significant",
      "estimatedImpact": 8,
      "checkScore": 0,
      "checkDetails": "-1% token reduction (HTML→Markdown)"
    },
    {
      "id": "add_markdown_negotiation",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_markdown_negotiation.title",
      "descriptionKey": "rec.add_markdown_negotiation.description",
      "howToKey": "rec.add_markdown_negotiation.howto",
      "effort": "significant",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No Markdown for Agents support detected"
    },
    {
      "id": "add_robots_txt",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_robots_txt.title",
      "descriptionKey": "rec.add_robots_txt.description",
      "howToKey": "rec.add_robots_txt.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No robots.txt found"
    },
    {
      "id": "add_sitemap",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_sitemap.title",
      "descriptionKey": "rec.add_sitemap.description",
      "howToKey": "rec.add_sitemap.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No sitemap found"
    },
    {
      "id": "add_content_signals",
      "priority": "critical",
      "category": "aiDiscoverability",
      "titleKey": "rec.add_content_signals.title",
      "descriptionKey": "rec.add_content_signals.description",
      "howToKey": "rec.add_content_signals.howto",
      "effort": "quick-win",
      "estimatedImpact": 5,
      "checkScore": 0,
      "checkDetails": "No Content-Signal found (robots.txt or HTTP headers)"
    },
    {
      "id": "add_schema_org",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_schema_org.title",
      "descriptionKey": "rec.add_schema_org.description",
      "howToKey": "rec.add_schema_org.howto",
      "effort": "moderate",
      "estimatedImpact": 6,
      "checkScore": 0,
      "checkDetails": "No JSON-LD / Schema.org found"
    },
    {
      "id": "add_open_graph",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_open_graph.title",
      "descriptionKey": "rec.add_open_graph.description",
      "howToKey": "rec.add_open_graph.howto",
      "effort": "quick-win",
      "estimatedImpact": 4,
      "checkScore": 0,
      "checkDetails": "0/3 OG tags present"
    },
    {
      "id": "add_meta_description",
      "priority": "high",
      "category": "structuredData",
      "titleKey": "rec.add_meta_description.title",
      "descriptionKey": "rec.add_meta_description.description",
      "howToKey": "rec.add_meta_description.howto",
      "effort": "quick-win",
      "estimatedImpact": 4,
      "checkScore": 0,
      "checkDetails": "No meta description"
    }
  ],
  "llmsTxtPreview": "# bandcamp.k47.cz\n\n> search (now fixed)\n\n## Main\n- [bandcamp explorer](https://bandcamp.k47.cz/): search (now fixed)\n\n",
  "llmsTxtExisting": null,
  "emergingProtocols": {
    "oauthDiscovery": {
      "exists": false,
      "url": "https://bandcamp.k47.cz/.well-known/oauth-authorization-server"
    },
    "mcpServerCard": {
      "exists": false,
      "url": "https://bandcamp.k47.cz/.well-known/mcp.json"
    },
    "a2aAgentCard": {
      "exists": false,
      "url": "https://bandcamp.k47.cz/.well-known/agent.json"
    },
    "count": 0
  },
  "snippets": [
    {
      "id": "add_llms_txt",
      "title": "Create /llms.txt",
      "description": "Upload this file to your web root. It tells AI agents what your site is about and which pages matter.",
      "language": "markdown",
      "code": "# bandcamp.k47.cz\n\n> search (now fixed)\n\n## Main\n- [bandcamp explorer](https://bandcamp.k47.cz/): search (now fixed)\n\n",
      "filename": "/llms.txt"
    },
    {
      "id": "add_open_graph",
      "title": "Add missing Open Graph tags",
      "description": "Open Graph tags control how your page looks when shared on social media and how AI platforms preview your URL in answers.",
      "language": "html",
      "code": "<meta property=\"og:title\" content=\"bandcamp explorer\">\n<meta property=\"og:description\" content=\"Page description.\">\n<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://bandcamp.k47.cz/\">\n<meta property=\"og:type\" content=\"website\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<meta property=\"og:title\" content=\"bandcamp explorer\">\n<meta property=\"og:description\" content=\"Page description.\">\n<meta property=\"og:image\" content=\"https://yoursite.com/og-image.jpg\">\n<meta property=\"og:url\" content=\"https://bandcamp.k47.cz/\">\n<meta property=\"og:type\" content=\"website\">"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Quick Open Graph tags without a plugin (skip if Yoast / Rank Math is active)\nadd_action('wp_head', function () {\n    if (!is_singular()) return;\n    $post = get_queried_object();\n    $title = get_the_title($post);\n    $desc  = get_the_excerpt($post) ?: wp_trim_words(strip_tags($post->post_content), 30);\n    $image = get_the_post_thumbnail_url($post, 'large') ?: 'https://yoursite.com/og-image.jpg';\n    $url   = get_permalink($post);\n    printf('<meta property=\"og:title\" content=\"%s\">' . \"\\n\", esc_attr($title));\n    printf('<meta property=\"og:description\" content=\"%s\">' . \"\\n\", esc_attr($desc));\n    printf('<meta property=\"og:image\" content=\"%s\">' . \"\\n\", esc_url($image));\n    printf('<meta property=\"og:url\" content=\"%s\">' . \"\\n\", esc_url($url));\n    echo '<meta property=\"og:type\" content=\"article\">' . \"\\n\";\n}, 5);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page.tsx",
          "code": "// Next.js App Router — Metadata API\nimport type { Metadata } from 'next';\n\nexport const metadata: Metadata = {\n  title: \"bandcamp explorer\",\n  description: \"Page description.\",\n  openGraph: {\n    title: \"bandcamp explorer\",\n    description: \"Page description.\",\n    url: \"https://bandcamp.k47.cz/\",\n    images: [\"https://yoursite.com/og-image.jpg\"],\n    type: 'website',\n  },\n};"
        }
      ]
    },
    {
      "id": "add_meta_description",
      "title": "Add meta description",
      "description": "A good meta description (50-160 characters) helps AI agents understand your page quickly.",
      "language": "html",
      "code": "<meta name=\"description\" content=\"search (now fixed)\">",
      "filename": "<head>"
    },
    {
      "id": "add_schema_org",
      "title": "Add Schema.org JSON-LD",
      "description": "Structured data helps AI agents understand the type, author, and purpose of your content.",
      "language": "html",
      "code": "<script type=\"application/ld+json\">\n{\n  \"@context\": \"https://schema.org\",\n  \"@type\": \"WebPage\",\n  \"name\": \"bandcamp explorer\",\n  \"description\": \"Page description.\",\n  \"url\": \"https://bandcamp.k47.cz/\",\n  \"inLanguage\": \"en\"\n}\n</script>",
      "filename": "<head>"
    },
    {
      "id": "add_robots_txt",
      "title": "Create /robots.txt",
      "description": "A robots.txt file tells crawlers (including AI bots) what they can and cannot access.",
      "language": "txt",
      "code": "User-agent: *\nAllow: /\n\nSitemap: https://bandcamp.k47.cz/sitemap.xml",
      "filename": "/robots.txt"
    },
    {
      "id": "add_sitemap",
      "title": "Create /sitemap.xml",
      "description": "A sitemap helps AI agents discover all your pages. Most CMS platforms generate one automatically.",
      "language": "xml",
      "code": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">\n  <url>\n    <loc>https://bandcamp.k47.cz/</loc>\n    <lastmod>2026-05-26</lastmod>\n  </url>\n</urlset>",
      "filename": "/sitemap.xml"
    },
    {
      "id": "add_article_main",
      "title": "Wrap content in <main> and <article>",
      "description": "Semantic HTML landmarks help AI agents identify the main content of your page.",
      "language": "html",
      "code": "<main>\n  <article>\n    <h1>Your Page Title</h1>\n    <p>Your content here...</p>\n  </article>\n</main>",
      "filename": "<body>"
    },
    {
      "id": "add_content_signals",
      "title": "Add Content-Signal directives",
      "description": "Content-Signal tells AI agents how they may use your content. The canonical location is robots.txt, but you can also expose it as an HTTP header from any stack.",
      "language": "txt",
      "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no",
      "filename": "/robots.txt",
      "stacks": [
        {
          "id": "robots",
          "label": "robots.txt",
          "language": "txt",
          "filename": "/robots.txt",
          "code": "User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no"
        },
        {
          "id": "nginx",
          "label": "Nginx",
          "language": "nginx",
          "filename": "server block",
          "code": "# Inside your server { } block:\nadd_header Content-Signal \"search=yes, ai-input=yes, ai-train=no\" always;"
        },
        {
          "id": "apache",
          "label": "Apache",
          "language": "apache",
          "filename": ".htaccess",
          "code": "# In .htaccess (or VirtualHost):\nHeader set Content-Signal \"search=yes, ai-input=yes, ai-train=no\""
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// In your theme's functions.php or a small mu-plugin\nadd_action('send_headers', function () {\n    header('Content-Signal: search=yes, ai-input=yes, ai-train=no');\n});\n\n// Optional: also append the directive to the dynamic robots.txt\nadd_filter('robots_txt', function ($output) {\n    return $output . \"\\nContent-Signal: search=yes, ai-input=yes, ai-train=no\\n\";\n}, 10, 1);"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "middleware.ts",
          "code": "// middleware.ts (Next.js 13+ App Router or Pages Router)\nimport { NextResponse } from 'next/server';\nexport function middleware() {\n  const res = NextResponse.next();\n  res.headers.set(\n    'Content-Signal',\n    'search=yes, ai-input=yes, ai-train=no'\n  );\n  return res;\n}\nexport const config = { matcher: '/:path*' };"
        },
        {
          "id": "cloudflare",
          "label": "Cloudflare Workers",
          "language": "javascript",
          "filename": "worker.js",
          "code": "// Cloudflare Worker that proxies your origin and adds the header\nexport default {\n  async fetch(request, env, ctx) {\n    const res = await fetch(request);\n    const newRes = new Response(res.body, res);\n    newRes.headers.set(\n      'Content-Signal',\n      'search=yes, ai-input=yes, ai-train=no'\n    );\n    return newRes;\n  },\n};"
        },
        {
          "id": "express",
          "label": "Express / Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Express\napp.use((req, res, next) => {\n  res.setHeader('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  next();\n});\n\n// Fastify\nfastify.addHook('onSend', (request, reply, payload, done) => {\n  reply.header('Content-Signal', 'search=yes, ai-input=yes, ai-train=no');\n  done();\n});"
        }
      ]
    },
    {
      "id": "add_markdown_negotiation",
      "title": "Support Markdown for Agents",
      "description": "Let AI agents request a clean Markdown version of any page via content negotiation, .md alternate URLs, link tags or Link headers.",
      "language": "html",
      "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">",
      "filename": "<head>",
      "stacks": [
        {
          "id": "html",
          "label": "HTML <head>",
          "language": "html",
          "filename": "<head>",
          "code": "<!-- Mechanism 3: link tag advertising the .md alternate -->\n<link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        },
        {
          "id": "express",
          "label": "Express",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\napp.get('/page', (req, res) => {\n  res.setHeader('Vary', 'Accept');\n  res.setHeader('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    res.type('text/markdown; charset=utf-8');\n    return res.send(renderMarkdown('page'));\n  }\n  res.render('page');\n});"
        },
        {
          "id": "fastify",
          "label": "Fastify",
          "language": "javascript",
          "filename": "server.js",
          "code": "// Mechanisms 1 + 4: content negotiation + Link header\nfastify.get('/page', async (req, reply) => {\n  reply.header('Vary', 'Accept');\n  reply.header('Link', '</page.md>; rel=\"alternate\"; type=\"text/markdown\"');\n  if ((req.headers.accept || '').includes('text/markdown')) {\n    return reply.type('text/markdown; charset=utf-8').send(renderMarkdown('page'));\n  }\n  return reply.view('/page.ejs');\n});"
        },
        {
          "id": "nextjs",
          "label": "Next.js",
          "language": "typescript",
          "filename": "app/page/route.ts",
          "code": "// Next.js App Router — Route Handler returning Markdown\nimport { NextRequest } from 'next/server';\nimport { renderMarkdown } from '@/lib/md';\nexport async function GET(req: NextRequest) {\n  const accept = req.headers.get('accept') || '';\n  if (accept.includes('text/markdown')) {\n    return new Response(await renderMarkdown('page'), {\n      headers: {\n        'Content-Type': 'text/markdown; charset=utf-8',\n        'Vary': 'Accept',\n      },\n    });\n  }\n  // Fall through to the page component\n  return new Response(null, { status: 404 });\n}"
        },
        {
          "id": "wordpress",
          "label": "WordPress",
          "language": "php",
          "filename": "functions.php",
          "code": "<?php\n// Mechanism 1: respond to Accept: text/markdown on the same URL\nadd_action('template_redirect', function () {\n    if (!is_singular()) return;\n    $accept = $_SERVER['HTTP_ACCEPT'] ?? '';\n    if (strpos($accept, 'text/markdown') === false) return;\n    header('Content-Type: text/markdown; charset=utf-8');\n    header('Vary: Accept');\n    $post = get_queried_object();\n    echo \"# \" . get_the_title($post) . \"\\n\\n\";\n    echo wp_strip_all_tags(apply_filters('the_content', $post->post_content));\n    exit;\n});"
        },
        {
          "id": "static",
          "label": "Hugo / Jekyll / Astro",
          "language": "txt",
          "filename": "static/page.md",
          "code": "# Mechanism 2: serve .md alongside .html\n# Hugo: place page.md in /static/ — built unchanged\n# Jekyll: drop page.md in /assets/ — copied as-is\n# Astro: src/pages/page.md.ts that exports a GET returning markdown\n\n# Then advertise with mechanism 3 in <head>:\n#   <link rel=\"alternate\" type=\"text/markdown\" href=\"/page.md\">"
        }
      ]
    }
  ]
}

Utilisez notre API pour obtenir ceci de manière programmatique (bientôt disponible)

Ce JSON est à usage interne — contrairement au Markdown et au llms.txt, il n’est pas destiné à être téléversé sur votre site. Conservez-le comme référence pour suivre l’évolution de votre score, partagez-le avec votre équipe de développement ou intégrez-le dans votre pipeline CI/CD.

Partagez vos résultats

Twitter LinkedIn

Intégrez votre badge

Ajoutez ce badge à votre site. Il se met à jour automatiquement lorsque votre score de préparation à l’IA change.

AgentReady.md score for bandcamp.k47.cz
Script Recommandé
<script src="https://agentready.md/badge.js" data-id="7be2e399-6e1e-411f-b576-f39db3d4698b" data-domain="bandcamp.k47.cz"></script>
Markdown
[![AgentReady.md score for bandcamp.k47.cz](https://agentready.md/badge/bandcamp.k47.cz.svg)](https://agentready.md/fr/r/7be2e399-6e1e-411f-b576-f39db3d4698b)

Bientôt : Analyse de domaine complet

Explorez l’ensemble de votre domaine, générez un llms.txt et surveillez votre score de préparation IA dans le temps. Rejoignez la liste d’attente pour être informé.

Vous êtes sur la liste ! Nous vous préviendrons lors du lancement.