인증된 AgentReady.md 증명서
발급일 sig: 91fb323085c15bd2 검증 →

분석된 URL

https://bandcamp.k47.cz/

다른 URL 분석

AI-Ready 점수

46 / D

미흡

/ 100

토큰 절감량

HTML 토큰 5574
Markdown 토큰 5637
절감 -1%

점수 상세

시맨틱 HTML 70/100
콘텐츠 효율성 54/100
AI 발견 가능성 15/100
구조화 데이터 0/100
접근성 100/100

신흥 프로토콜

3개 중 0개 감지

AI 에이전트가 찾는 well-known 엔드포인트. 감지되면 에이전트가 서비스를 자동으로 발견하고 연결할 수 있습니다.

  • 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

사이트에 llms.txt 파일이 없습니다. AI 에이전트가 사이트 구조를 이해하도록 돕는 새로운 표준입니다.

구현 방법

llmstxt.org 사양에 따라 /llms.txt 파일을 만드세요. 사이트 설명과 주요 페이지 링크를 포함하세요.

페이지에 <article> 또는 <main> 요소가 없습니다. 이 시맨틱 컨테이너는 AI 에이전트가 주요 콘텐츠 영역을 식별하고 내비게이션, 사이드바, 푸터를 무시하는 데 도움을 줍니다.

구현 방법

페이지의 주요 콘텐츠 주위에 <main> 요소를 추가하고, 블로그 게시물이나 제품 설명 같은 독립적인 콘텐츠 블록에는 <article>을 사용하세요.

HTML-Markdown 변환의 토큰 감소율이 낮습니다. 콘텐츠 대비 마크업이 과도합니다.

구현 방법

불필요한 마크업, 인라인 스타일, 표현 요소를 제거하세요. Markdown으로 깔끔하게 변환되는 콘텐츠 중심 HTML을 유지하세요.

사이트가 Markdown for Agents를 지원하지 않습니다. 이 Cloudflare 표준을 통해 AI 에이전트가 마크다운 형식으로 콘텐츠를 요청할 수 있으며, 토큰 사용량을 ~80% 줄일 수 있습니다.

구현 방법

다음 중 하나 이상을 구현하세요: (1) Accept: text/markdown에 마크다운 콘텐츠로 응답. (2) .md URL 제공 (예: /page.md). (3) <link rel="alternate" type="text/markdown"> 태그 추가. (4) 마크다운 발견을 위한 Link HTTP 헤더 추가.

{\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# "}] }'>

사이트에 robots.txt 파일이 없습니다. 이 파일은 봇(AI 에이전트 포함)이 사이트에 접근하는 방식을 제어합니다.

구현 방법

콘텐츠 페이지 접근을 허용하는 /robots.txt 파일을 만드세요. sitemap.xml을 가리키는 Sitemap 지시문을 포함하세요.

사이트맵을 찾을 수 없습니다. 사이트맵은 AI 에이전트가 사이트의 모든 페이지를 발견하는 데 도움을 줍니다.

구현 방법

모든 공개 페이지를 나열하는 /sitemap.xml을 만드세요. 대부분의 CMS 플랫폼에서 자동 생성할 수 있습니다.

Content-Signal 지시어가 발견되지 않았습니다. 이는 AI 에이전트에게 콘텐츠 사용 방법(검색 색인, AI 입력, 훈련 데이터)을 알려줍니다. 권장 위치는 robots.txt입니다.

구현 방법

robots.txt에 Content-Signal을 추가하세요: User-agent: *\nContent-Signal: search=yes, ai-input=yes, ai-train=no. 마크다운 응답의 HTTP 헤더로도 추가할 수 있습니다.

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

Schema.org 구조화 데이터를 찾을 수 없습니다. JSON-LD는 AI 에이전트가 페이지에서 사실 기반의 구조화 정보를 추출하는 데 도움을 줍니다.

구현 방법

Schema.org 마크업이 포함된 <script type="application/ld+json"> 블록을 추가하세요. 적절한 유형을 사용하세요: 블로그 게시물에는 Article, 제품 페이지에는 Product, 회사 페이지에는 Organization.

Open Graph 태그가 없거나 불완전합니다. OG 태그는 AI 에이전트(및 소셜 플랫폼)가 페이지의 제목, 설명, 이미지를 이해하는 데 도움을 줍니다.

구현 방법

페이지의 <head>에 og:title, og:description, og:image 메타 태그를 추가하세요.

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

메타 설명을 찾을 수 없습니다. 이 태그는 AI 에이전트와 검색 엔진에 페이지의 간결한 요약을 제공합니다.

구현 방법

페이지 콘텐츠에 대한 150-160자 설명이 포함된 <meta name="description" content="..."> 태그를 추가하세요.

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
*

이 파일을 서버의 /index.md에 업로드하여 AI 에이전트가 페이지의 깔끔한 버전에 접근할 수 있게 하세요. Accept: text/markdown 콘텐츠 협상을 설정하여 자동으로 제공할 수도 있습니다.

이 단일 페이지용으로 생성된 llms.txt

llms.txt 다운로드
# bandcamp.k47.cz

> search (now fixed)

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

전체 llms.txt는 도메인 전체 분석이 필요합니다 (곧 출시)

이 파일을 도메인 루트의 https://bandcamp.k47.cz/llms.txt에 업로드하세요. ChatGPT, Claude, Perplexity 등의 AI 에이전트가 이 파일을 확인하여 사이트 구조를 파악합니다.

시맨틱 HTML

article 또는 main 요소 사용 (0/100)

Missing <article> and <main> elements

올바른 제목 계층 구조 (100/100)

Clean heading hierarchy

시맨틱 HTML 요소 사용 (50/100)

No divs or semantic elements found

의미 있는 이미지 alt 속성 (100/100)

No images found

낮은 div 중첩 깊이 (100/100)

No divs found

콘텐츠 효율성

양호한 토큰 감소율 (0/100)

-1% token reduction (HTML→Markdown)

양호한 콘텐츠 대 잡음 비율 (80/100)

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

최소한의 인라인 스타일 (100/100)

1/327 elements with inline styles (0.3%)

적절한 페이지 무게 (100/100)

HTML size: 14KB

AI 발견 가능성

llms.txt 파일 있음 (0/100)

No llms.txt found

robots.txt 파일 있음 (0/100)

No robots.txt found

robots.txt가 AI 봇 허용 (100/100)

No robots.txt — AI bots allowed by default

sitemap.xml 있음 (0/100)

No sitemap found

Markdown for Agents 지원 (0/100)
&#10007; Accept: text/markdown &#10007; .md URL &#10007; <link> tag &#10007; Link header
Content-Signal 있음 (robots.txt 또는 HTTP 헤더) (0/100)
&#10003; robots.txt &#10003; HTTP header &#10007; Policy

구조화 데이터

Schema.org / JSON-LD 있음 (0/100)

No JSON-LD / Schema.org found

Open Graph 태그 있음 (0/100)

0/3 OG tags present

메타 설명 있음 (0/100)

No meta description

정규 URL 있음 (0/100)

No canonical URL

lang 속성 있음 (0/100)

No lang attribute on <html>

접근성

JavaScript 없이 콘텐츠 이용 가능 (100/100)

Content available without JavaScript

적절한 페이지 크기 (100/100)

Page size: 14KB

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\">"
        }
      ]
    }
  ]
}

API를 사용하여 프로그래밍 방식으로 가져올 수 있습니다 (곧 출시)

이 JSON은 내부용입니다 — Markdown 및 llms.txt 파일과 달리 사이트에 업로드하기 위한 것이 아닙니다. 시간에 따른 점수 추적을 위한 기준값으로 저장하거나, 개발팀과 공유하거나, CI/CD 파이프라인에 통합하세요.

결과 공유

Twitter LinkedIn

배지 삽입

이 배지를 사이트에 추가하세요. AI 준비도 점수가 변경되면 자동으로 업데이트됩니다.

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

곧 출시: 전체 도메인 분석

전체 도메인을 크롤링하고, llms.txt를 생성하고, AI 준비도 점수를 시간에 따라 모니터링하세요. 대기자 명단에 등록하여 알림을 받으세요.

명단에 등록되었습니다! 서비스 출시 시 알려드리겠습니다.