> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloud.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 v2
</Title>

Backend onchain tools for interacting with EVM and Solana APIs to create accounts and send transactions, policy APIs to govern transaction permissions, as well as 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" />
</CardGroup>

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

Backend onchain tools to enable the simple integration of crypto into your app. By calling Coinbase's Platform APIs, the SDK allows you to provision crypto wallets, send crypto into/out of those wallets, track wallet balances, and trade crypto from one asset into another.

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

  <Card title="TypeScript" icon="npm" href="https://coinbase.github.io/coinbase-sdk-nodejs/index.html" />
</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-samples/prime-sdk-java" />

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

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

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

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