Certificado AgentReady.md verificado
Emitido em sig: 91fb323085c15bd2 Verificar →

URL analisado

https://bandcamp.k47.cz/

Analisar outro URL

Pontuação AI-Ready

46 / D

Fraco

de 100

Poupança de tokens

Tokens HTML 5574
Tokens Markdown 5637
Poupança -1%

Desdobramento da pontuação

HTML Semântico 70/100
Eficiência de conteúdo 54/100
Descobribilidade IA 15/100
Dados Estruturados 0/100
Acessibilidade 100/100

Protocolos emergentes

0 de 3 detetados

Endpoints well-known que os agentes de IA procuram. Detetado significa que um agente pode descobrir e conectar-se automaticamente ao seu serviço.

  • 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

O seu site não tem um ficheiro llms.txt. Este é o padrão emergente para ajudar agentes de IA a compreender a estrutura do seu site.

Como implementar

Crie um ficheiro /llms.txt seguindo a especificação llmstxt.org. Inclua uma descrição do site e links para as suas páginas principais.

A sua página não utiliza elementos <article> ou <main>. Estes contentores semânticos ajudam os agentes de IA a identificar a área de conteúdo principal e ignorar navegação, barras laterais e rodapés.

Como implementar

Adicione um elemento <main> à volta do conteúdo principal da sua página e use <article> para blocos de conteúdo autónomos como publicações de blog ou descrições de produtos.

A conversão HTML-para-Markdown mostra um baixo rácio de redução de tokens. A sua página tem markup excessivo em relação ao conteúdo.

Como implementar

Remova markup desnecessário, estilos inline e elementos de apresentação. Mantenha HTML focado no conteúdo que converta limpo para Markdown.

O seu site não suporta Markdown for Agents. Este padrão Cloudflare permite que agentes de IA solicitem conteúdo em formato markdown, reduzindo o uso de tokens em ~80%.

Como implementar

Implemente um ou mais: (1) Responder a Accept: text/markdown com conteúdo markdown. (2) Servir URLs .md (ex: /pagina.md). (3) Adicionar tags <link rel="alternate" type="text/markdown">. (4) Adicionar cabeçalhos HTTP Link para descoberta 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# "}] }'>

O seu site não tem um ficheiro robots.txt. Este ficheiro controla como os bots (incluindo agentes de IA) acedem ao seu site.

Como implementar

Crie um ficheiro /robots.txt que permita acesso às suas páginas de conteúdo. Inclua uma diretiva Sitemap apontando para o seu sitemap.xml.

Nenhum sitemap encontrado. Um sitemap ajuda os agentes de IA a descobrir todas as páginas do seu site.

Como implementar

Crie um /sitemap.xml listando todas as suas páginas públicas. A maioria das plataformas CMS pode gerar isto automaticamente.

Nenhuma diretiva Content-Signal encontrada. Estas indicam aos agentes de IA como podem usar o seu conteúdo (indexação, entrada IA, dados de treino). A localização recomendada é robots.txt.

Como implementar

Adicione Content-Signal ao seu robots.txt: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. Também pode adicioná-lo como cabeçalho HTTP em respostas 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});"}] }'>

Não foram encontrados dados estruturados Schema.org. JSON-LD ajuda os agentes de IA a extrair informação factual e estruturada das suas páginas.

Como implementar

Adicione um bloco <script type="application/ld+json"> com marcação Schema.org. Use tipos apropriados: Article para publicações de blog, Product para páginas de produtos, Organization para a página da sua empresa.

Tags Open Graph em falta ou incompletas. As tags OG ajudam os agentes de IA (e plataformas sociais) a compreender o título, descrição e imagem da sua página.

Como implementar

Adicione meta tags og:title, og:description e og:image ao <head> da sua página.

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};"}] }'>

Nenhuma meta descrição encontrada. Esta tag fornece um resumo conciso da página para agentes de IA e motores de busca.

Como implementar

Adicione uma tag <meta name="description" content="..."> com uma descrição de 150-160 caracteres do conteúdo da página.

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
*

Carregue este ficheiro como /index.md no seu servidor para que os agentes de IA possam aceder a uma versão limpa da sua página. Também pode configurar a negociação de conteúdo Accept: text/markdown para o servir automaticamente.

llms.txt gerado para esta página individual

Descarregar llms.txt
# bandcamp.k47.cz

> search (now fixed)

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

O llms.txt completo requer análise de todo o domínio (em breve)

Carregue este ficheiro como https://bandcamp.k47.cz/llms.txt na raiz do seu domínio. Agentes de IA como ChatGPT, Claude e Perplexity verificam este ficheiro para compreender a estrutura do seu site.

HTML Semântico

Utiliza elemento article ou main (0/100)

Missing <article> and <main> elements

Hierarquia de títulos correta (100/100)

Clean heading hierarchy

Utiliza elementos HTML semânticos (50/100)

No divs or semantic elements found

Textos alt de imagens descritivos (100/100)

No images found

Baixa profundidade de aninhamento de div (100/100)

No divs found

Eficiência de conteúdo

Bom rácio de redução de tokens (0/100)

-1% token reduction (HTML→Markdown)

Bom rácio conteúdo-ruído (80/100)

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

Estilos inline mínimos (100/100)

1/327 elements with inline styles (0.3%)

Peso de página razoável (100/100)

HTML size: 14KB

Descobribilidade IA

Tem ficheiro llms.txt (0/100)

No llms.txt found

Tem ficheiro robots.txt (0/100)

No robots.txt found

robots.txt permite bots de IA (100/100)

No robots.txt — AI bots allowed by default

Tem sitemap.xml (0/100)

No sitemap found

Suporte a Markdown for Agents (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Tem Content-Signal (robots.txt ou cabeçalhos HTTP) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

Dados Estruturados

Tem Schema.org / JSON-LD (0/100)

No JSON-LD / Schema.org found

Tem tags Open Graph (0/100)

0/3 OG tags present

Tem meta descrição (0/100)

No meta description

Tem URL canónico (0/100)

No canonical URL

Tem atributo lang (0/100)

No lang attribute on <html>

Acessibilidade

Conteúdo disponível sem JavaScript (100/100)

Content available without JavaScript

Tamanho de página razoável (100/100)

Page size: 14KB

Conteúdo aparece cedo no 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\">"
        }
      ]
    }
  ]
}

Use a nossa API para obter isto programaticamente (em breve)

Este JSON é para uso interno — ao contrário dos ficheiros Markdown e llms.txt, não se destina a ser carregado no seu site. Guarde-o como referência para acompanhar a sua pontuação ao longo do tempo, partilhe-o com a sua equipa de desenvolvimento ou integre-o no seu pipeline CI/CD.

Partilhe os seus resultados

Twitter LinkedIn

Incorpore o seu badge

Adicione este badge ao seu site. Atualiza automaticamente quando a sua pontuação de prontidão para IA mudar.

AgentReady.md score for bandcamp.k47.cz
Script Recomendado
<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/pt/r/7be2e399-6e1e-411f-b576-f39db3d4698b)

Em breve: Análise completa de domínio

Rastreie todo o seu domínio, gere llms.txt e monitorize a sua pontuação de prontidão para IA ao longo do tempo. Inscreva-se na lista de espera.

Está na lista! Notificá-lo-emos quando estiver disponível.