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

# Introduction

> Explore our SDKs for building onchain apps, AI agents, and more.

export const Section = ({children}) => {
  return <div className="not-prose text-sm text-primary dark:text-primary-light mt-2 mb-1 font-bold">
      {children}
    </div>;
};

export const Title = ({children, lightImg, darkImg, hasTopMargin}) => {
  return <div className={`flex gap-2 not-prose ${hasTopMargin ? "mt-12" : ""}`}>
      <img src={lightImg} style={{
    width: "28px",
    height: "28px"
  }} noZoom className="block dark:hidden" />
      <img src={darkImg} style={{
    width: "28px",
    height: "28px"
  }} noZoom className="hidden dark:block" />
      <span className="font-semibold text-xl">{children}</span>
    </div>;
};

## <Section>Build onchain</Section>

<Title
  lightImg={
"https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/light/developerSDKNavigation-0.svg"
}
  darkImg={
"https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/dark/developerSDKNavigation-0.svg"
}
>
  ### CDP SDK
</Title>

Backend onchain tools for creating accounts and sending transactions on EVM and Solana, end user account management APIs for user wallets, policy APIs to govern transaction permissions, and authentication tools for interacting directly with the CDP APIs.

<CardGroup cols={2}>
  <Card title="Python" icon="python" href="https://coinbase.github.io/cdp-sdk/python/" />

  <Card title="TypeScript" icon="npm" href="/sdks/cdp-sdks-v2/typescript" />
</CardGroup>

Front end tools for providing user wallets on your web or mobile applications.

<CardGroup cols={2}>
  <Card title="Frontend" icon="react" href="/sdks/cdp-sdks-v2/frontend" />

  <Card title="Mobile" icon="apple" href="/sdks/cdp-sdks-v2/mobile/swift" />
</CardGroup>

<Title lightImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/light/nftAvatar-3.svg" darkImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/dark/nftAvatar-3.svg" hasTopMargin>
  ### AgentKit
</Title>

AgentKit is a toolkit enabling AI agents to interact with blockchain networks with secure wallet management and comprehensive onchain capabilities. Built on the Coinbase Developer Platform (CDP) SDK, it provides everything needed to create autonomous agents that can perform sophisticated blockchain operations.

<CardGroup cols={2}>
  <Card title="Python" icon="python" href="https://github.com/coinbase/agentkit/blob/main/python/coinbase-agentkit/README.md" />

  <Card title="TypeScript" icon="npm" href="https://github.com/coinbase/agentkit/blob/main/typescript/agentkit/README.md" />
</CardGroup>

## <Section>Consumer APIs</Section>

<Title lightImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/light/coinbaseOneTrade-0.svg" darkImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/pictogram/svg/dark/coinbaseOneTrade-0.svg">
  ### Coinbase Advanced Trade
</Title>

Coinbase Advanced Trade is our advanced trading platform, intended for the more experienced trader. It offers a secure and easy way to buy, sell, and trade digital assets online across various trading pairs.

<CardGroup cols={2}>
  <Card title="Python" icon="python" href="https://github.com/coinbase/coinbase-advanced-py/" />

  <Card title="TypeScript" icon="npm" href="https://github.com/coinbase-samples/advanced-sdk-ts" />

  <Card title="Go" icon="golang" href="https://github.com/coinbase-samples/advanced-trade-sdk-go" />

  <Card title="Java" icon="java" href="https://github.com/coinbase-samples/advanced-sdk-java" />
</CardGroup>

## <Section>Institutional APIs</Section>

<Title lightImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/spotIcon/svg/light/primeProduct-1.svg" darkImg="https://static-assets.coinbase.com/ui-infra/illustration/v1/spotIcon/svg/dark/primeProduct-1.svg">
  ### Coinbase Prime
</Title>

Coinbase Prime is a full-service prime brokerage platform for institutional investors, combining secure custody solutions, advanced trading options via our Smart Order Router, and real-time market data to meet the needs of professional traders and financial institutions.

<CardGroup cols={2}>
  <Card title="Java" icon="java" href="https://github.com/coinbase/prime-sdk-java" />

  <Card title=".Net" icon="globe" href="https://github.com/coinbase/prime-sdk-dotnet" />

  <Card title="Go" icon="golang" href="https://github.com/coinbase/prime-sdk-go" />

  <Card title="Python" icon="python" href="https://github.com/coinbase/prime-sdk-py" />

  <Card title="TypeScript" icon="npm" href="https://github.com/coinbase/prime-sdk-ts" />

  <Card title="Rust" icon="rust" href="https://github.com/coinbase/prime_sdk_rs" />
</CardGroup>
