> ## Documentation Index
> Fetch the complete documentation index at: https://docs.x.com/llms.txt
> Use this file to discover all available pages before exploring further.

# 정책 및 계약

> X 개발자 정책, 계약 및 표시 요건 — 개발자 계약, 개발자 정책, Ads API 계약, 제한된 사용 사례를 포함합니다.

export const Button = ({href, children}) => {
  return <div className="not-prose group">
    <a href={href}>
      <button className="flex items-center space-x-2.5 py-1 px-4 bg-primary-dark dark:bg-white text-white dark:text-gray-950 rounded-full group-hover:opacity-[0.9] font-medium">
        <span>
          {children}
        </span>
        <svg width="3" height="24" viewBox="0 -9 3 24" class="h-6 rotate-0 overflow-visible"><path d="M0 0L3 3L0 6" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round"></path></svg>
      </button>
    </a>
  </div>;
};

## 개요

개발자의 X 자료 및 콘텐츠 사용은 당사의 개발자 정책과 계약의 적용을 받으며 이에 따라 규율됩니다.

<div className="developer-cards-grid grid md:grid-cols-3 gap-6 my-8 auto-rows-fr">
  <Card title="개발자 계약" icon="gavel" iconType="solid" href="/developer-terms/agreement" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/agreement">보기</Button>
    </div>
  </Card>

  <Card title="개발자 정책" icon="book" iconType="solid" href="/developer-terms/policy" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/policy">보기</Button>
    </div>
  </Card>

  <Card title="Ads API 계약" icon="gavel" iconType="solid" href="/developer-terms/ads-api-agreement" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/ads-api-agreement">보기</Button>
    </div>
  </Card>

  <Card title="X 개발자 PPU 계약" icon="gavel" iconType="solid" href="/developer-terms/ppu-agreement" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/ppu-agreement">보기</Button>
    </div>
  </Card>

  <Card title="제한된 사용 사례" icon="user-xmark" iconType="solid" href="/developer-terms/more-on-restricted-use-cases" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/restricted-use-cases">보기</Button>
    </div>
  </Card>

  <Card title="지역 정보 가이드라인" icon="earth-americas" iconType="solid" href="/developer-terms/geo-guidelines" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/geo-guidelines">보기</Button>
    </div>
  </Card>

  <Card title="표시 요건" icon="display" iconType="solid" href="/developer-terms/display-requirements" className="h-full flex flex-col">
    <div style={{ marginTop: '16px', display: 'flex', flexDirection: 'column', justifyContent: 'flex-end', flex: 1 }}>
      <Button href="/developer-terms/display-requirements">보기</Button>
    </div>
  </Card>
</div>
