{
  "version": "https://jsonfeed.org/version/1.1",
  "title": "Claude API Code Examples",
  "home_page_url": "https://claude-code-examples.vercel.app/",
  "feed_url": "https://claude-code-examples.vercel.app/feed.json",
  "description": "Working 2026 code examples for the Anthropic API — Python, Node.js, TypeScript, Go.",
  "language": "en",
  "items": [
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-python-quickstart/",
      "url": "https://claude-code-examples.vercel.app/claude-api-python-quickstart/",
      "title": "Claude API Python Quickstart (2026 Working Example)",
      "summary": "Working Python code to call the Claude API in 2026. Install the Anthropic SDK, set your API key, and send your first message in under 10 lines.",
      "date_published": "2026-05-14T08:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-nodejs-quickstart/",
      "url": "https://claude-code-examples.vercel.app/claude-api-nodejs-quickstart/",
      "title": "Claude API Node.js Quickstart (2026 Working Example)",
      "summary": "Working Node.js code to call the Claude API in 2026. Install @anthropic-ai/sdk, set your API key, and get a response in under 10 lines.",
      "date_published": "2026-05-14T08:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-streaming-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-streaming-python/",
      "title": "Claude API Streaming Python Example (2026)",
      "summary": "How to stream Claude API responses in Python using the Anthropic SDK. Print tokens as they arrive instead of waiting for the full response.",
      "date_published": "2026-05-14T08:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-streaming-nodejs/",
      "url": "https://claude-code-examples.vercel.app/claude-api-streaming-nodejs/",
      "title": "Claude API Streaming Node.js Example (2026)",
      "summary": "Stream Claude API responses in Node.js using @anthropic-ai/sdk. Print tokens as they arrive with the streaming helper or raw event stream.",
      "date_published": "2026-05-14T08:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-tool-use-python/",
      "url": "https://claude-code-examples.vercel.app/claude-tool-use-python/",
      "title": "Claude API Tool Use (Function Calling) Python Example",
      "summary": "How to use Claude's tool_use (function calling) feature in Python. Define tools, let Claude decide when to call them, and handle results.",
      "date_published": "2026-05-14T08:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-tool-use-nodejs/",
      "url": "https://claude-code-examples.vercel.app/claude-tool-use-nodejs/",
      "title": "Claude API Tool Use (Function Calling) Node.js Example",
      "summary": "Function calling with Claude in Node.js. Define tools in JSON Schema, handle tool_use blocks, and return results for multi-step agent loops.",
      "date_published": "2026-05-14T08:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-prompt-caching-python/",
      "url": "https://claude-code-examples.vercel.app/claude-prompt-caching-python/",
      "title": "Claude Prompt Caching Python Example (2026)",
      "summary": "How to use Claude's prompt caching feature in Python. Cache large system prompts or documents and save up to 90% on repeated input tokens.",
      "date_published": "2026-05-14T08:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-vision-api-python/",
      "url": "https://claude-code-examples.vercel.app/claude-vision-api-python/",
      "title": "Claude Vision API Python Example — Analyze Images (2026)",
      "summary": "Analyze images with Claude in Python. Pass base64 images or URLs, extract text, describe scenes, and process PDFs with the Anthropic vision API.",
      "date_published": "2026-05-14T08:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-json-output-example/",
      "url": "https://claude-code-examples.vercel.app/claude-json-output-example/",
      "title": "Claude API JSON Output Example — Structured Data Extraction",
      "summary": "Get structured JSON from Claude without tool use. Use system prompts + temperature=0 to extract entities, classify text, and parse structured data.",
      "date_published": "2026-05-14T09:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-conversation-history-python/",
      "url": "https://claude-code-examples.vercel.app/claude-conversation-history-python/",
      "title": "Claude API Multi-Turn Conversation in Python (2026)",
      "summary": "Build multi-turn chat with Claude in Python. Manage conversation history, control context length, and implement memory patterns with the Anthropic SDK.",
      "date_published": "2026-05-14T09:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-typescript-quickstart/",
      "url": "https://claude-code-examples.vercel.app/claude-api-typescript-quickstart/",
      "title": "Claude API TypeScript Quickstart with Full Type Safety (2026)",
      "summary": "Type-safe Claude API calls in TypeScript. Use @anthropic-ai/sdk with full type inference for messages, tool use, streaming, and response handling.",
      "date_published": "2026-05-14T09:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-error-handling-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-error-handling-python/",
      "title": "Claude API Error Handling and Retry Logic in Python",
      "summary": "Handle rate limits, overloads, and API errors from the Anthropic SDK in Python. Implement exponential backoff, retries, and graceful degradation.",
      "date_published": "2026-05-14T09:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-batch-api-python/",
      "url": "https://claude-code-examples.vercel.app/claude-batch-api-python/",
      "title": "Claude Batch API Python Example — 50% Cost Savings",
      "summary": "Use the Anthropic Batch API in Python to process thousands of requests at 50% off standard pricing. Poll for results and handle partial failures.",
      "date_published": "2026-05-14T09:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-extended-thinking-python/",
      "url": "https://claude-code-examples.vercel.app/claude-extended-thinking-python/",
      "title": "Claude Extended Thinking API Python Example (2026)",
      "summary": "Enable extended thinking for Claude Opus in Python. Get step-by-step reasoning traces before the final answer on complex reasoning tasks.",
      "date_published": "2026-05-14T09:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-system-prompt-examples/",
      "url": "https://claude-code-examples.vercel.app/claude-system-prompt-examples/",
      "title": "Claude System Prompt Examples — Personas, Formats, Constraints",
      "summary": "Effective system prompt patterns for Claude. Role personas, output format enforcement, constraint setting, and safety instructions with working examples.",
      "date_published": "2026-05-14T09:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-async-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-async-python/",
      "title": "Async Claude API in Python — asyncio + aiohttp Patterns",
      "summary": "Run multiple Claude API calls concurrently with asyncio in Python. Use AsyncAnthropic, gather parallel requests, and handle rate limits in async code.",
      "date_published": "2026-05-14T10:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-pdf-analysis-python/",
      "url": "https://claude-code-examples.vercel.app/claude-pdf-analysis-python/",
      "title": "Claude PDF Analysis API Python Example (2026)",
      "summary": "Extract text, summarize, and analyze PDFs with the Claude API in Python. Pass PDFs as base64 documents or URLs and ask questions about the content.",
      "date_published": "2026-05-14T10:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-mcp-server-python/",
      "url": "https://claude-code-examples.vercel.app/claude-mcp-server-python/",
      "title": "Claude MCP Server Python Example — Build a Model Context Protocol Server",
      "summary": "Create a Model Context Protocol (MCP) server in Python that Claude can use as a tool. Expose custom functions, databases, and APIs to Claude Code and Claude Desktop.",
      "date_published": "2026-05-14T10:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-environment-setup/",
      "url": "https://claude-code-examples.vercel.app/claude-api-environment-setup/",
      "title": "Claude API Environment Setup — API Keys, .env, and Best Practices",
      "summary": "Set up your Anthropic API key securely. Store it in .env files, environment variables, and secrets managers. Avoid hardcoding keys in source code.",
      "date_published": "2026-05-14T10:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-go-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-go-example/",
      "title": "Claude API Go Example — Official SDK Quickstart (2026)",
      "summary": "Call the Claude API from Go using the official Anthropic Go SDK. Install the package, create a client, and send your first message with full type safety.",
      "date_published": "2026-05-14T10:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-rate-limits-guide/",
      "url": "https://claude-code-examples.vercel.app/claude-api-rate-limits-guide/",
      "title": "Claude API Rate Limits Explained — Tiers, Headers, and Retry Strategies",
      "summary": "Understand Anthropic API rate limits: RPM, TPM, and tier thresholds. How to read rate limit headers, request tier upgrades, and implement retry logic.",
      "date_published": "2026-05-14T10:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-vs-openai/",
      "url": "https://claude-code-examples.vercel.app/claude-api-vs-openai/",
      "title": "Claude API vs OpenAI API — 2026 Developer Comparison",
      "summary": "Side-by-side comparison of the Claude API (Anthropic) vs OpenAI API: pricing, context window, tool use, streaming, and migration. With Python code examples.",
      "date_published": "2026-05-14T10:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-haiku-api-example/",
      "url": "https://claude-code-examples.vercel.app/claude-haiku-api-example/",
      "title": "Claude Haiku API Example — Fast, Cheap Claude API Calls (Python)",
      "summary": "How to use claude-haiku-4-5 via the Anthropic Python SDK. Working code for classification, tagging, extraction, and high-volume tasks where Haiku's low cost matters.",
      "date_published": "2026-05-14T10:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-agents-python/",
      "url": "https://claude-code-examples.vercel.app/claude-agents-python/",
      "title": "Claude Agents Python — Agentic Loop with Tool Use (2026 Guide)",
      "summary": "Build an autonomous Claude agent in Python using the Anthropic SDK. Agentic loop pattern: Claude calls tools, you execute them, Claude continues until done. Working code examples.",
      "date_published": "2026-05-14T11:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-structured-output-python/",
      "url": "https://claude-code-examples.vercel.app/claude-structured-output-python/",
      "title": "Claude Structured Output Python — Pydantic, JSON Schema & TypedDict (2026)",
      "summary": "Extract structured data from Claude in Python using Pydantic models, JSON schema via tool_use, and TypedDict. Working code examples with validation. Updated for Claude Sonnet 4.6 and claude-haiku-4-5.",
      "date_published": "2026-05-14T11:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-function-calling-python/",
      "url": "https://claude-code-examples.vercel.app/claude-function-calling-python/",
      "title": "Claude Function Calling Python — How Tool Use Replaces OpenAI Function Calling",
      "summary": "Claude uses 'tool use' instead of 'function calling'. This guide shows how Claude tool_use maps to OpenAI function calling and how to migrate your existing code. Working examples for 2026.",
      "date_published": "2026-05-14T11:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-opus-api-example/",
      "url": "https://claude-code-examples.vercel.app/claude-opus-api-example/",
      "title": "Claude Opus 4 API Example — When to Use claude-opus-4-7 (2026 Guide)",
      "summary": "Working Python examples for Claude Opus 4 (claude-opus-4-7), Anthropic's most capable model. Learn when Opus beats Sonnet, how to use extended thinking with Opus, and how to manage cost at Opus pricin",
      "date_published": "2026-05-14T11:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-java-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-java-example/",
      "title": "Claude API Java Example — Call Anthropic from Java (2026)",
      "summary": "Call the Anthropic Claude API from Java using the official SDK or the Java HttpClient. Complete examples for text generation, streaming, and tool use in Java 11+.",
      "date_published": "2026-05-14T11:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-nextjs-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-nextjs-example/",
      "title": "Claude API Next.js Example — Streaming Chatbot with App Router (2026)",
      "summary": "Build a streaming Claude AI chatbot in Next.js using the App Router. Route handler, useChat hook, and full TypeScript example with Anthropic SDK.",
      "date_published": "2026-05-14T11:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-computer-use-example/",
      "url": "https://claude-code-examples.vercel.app/claude-computer-use-example/",
      "title": "Claude Computer Use API Example — Screenshot + Action Loop (2026)",
      "summary": "Call the Claude computer use API to let Claude control a desktop. Full Python example: screenshot, send to Claude, execute mouse/keyboard actions, loop.",
      "date_published": "2026-05-14T11:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-langchain-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-langchain-example/",
      "title": "Claude API LangChain Example — Anthropic + LangChain Integration (2026)",
      "summary": "Use Claude with LangChain in Python. Install langchain-anthropic, build chains, use LCEL, add memory, and stream responses — working 2026 examples.",
      "date_published": "2026-05-14T12:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-curl-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-curl-example/",
      "title": "Claude API curl Example — Test the Anthropic API from the Command Line (2026)",
      "summary": "Call the Claude API with curl. Complete 2026 examples: basic message, streaming, tool use, system prompt, and JSON extraction — no SDK required.",
      "date_published": "2026-05-14T12:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-fastapi-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-fastapi-example/",
      "title": "Claude API FastAPI Example — Streaming Claude Chatbot with FastAPI (2026)",
      "summary": "Build a streaming Claude chatbot backend with FastAPI and the Anthropic SDK. Includes SSE streaming, async endpoints, CORS, and a minimal frontend.",
      "date_published": "2026-05-14T12:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-flask-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-flask-example/",
      "title": "Claude API Flask Example — Streaming Claude Chatbot with Flask (2026)",
      "summary": "Build a Claude chatbot backend with Flask in Python. Includes streaming with SSE using stream_with_context, conversation history endpoint, and CORS setup.",
      "date_published": "2026-05-14T12:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-csharp-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-csharp-example/",
      "title": "Claude API C# Example — Call Anthropic from C# and .NET (2026)",
      "summary": "Call the Claude API from C# using HttpClient. Complete working example with async/await, system prompt, streaming SSE, and exponential-backoff retry — no official .NET SDK required.",
      "date_published": "2026-05-14T12:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-files-api-python/",
      "url": "https://claude-code-examples.vercel.app/claude-files-api-python/",
      "title": "Claude Files API Python Example — Upload and Reuse Files (2026)",
      "summary": "Use the Anthropic Files API in Python to upload documents once and reference them in multiple Claude requests. Reduces costs by avoiding repeated base64 encoding of large files.",
      "date_published": "2026-05-14T12:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-ruby-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-ruby-example/",
      "title": "Claude API Ruby Example — Anthropic Ruby Integration (2026)",
      "summary": "Working Ruby code for the Claude API using net/http. No official Ruby gem needed — call Claude from Rails, Sinatra, or plain Ruby scripts with these copy-paste examples.",
      "date_published": "2026-05-14T12:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-php-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-php-example/",
      "title": "Claude API PHP Example — Anthropic API PHP Integration (2026)",
      "summary": "Working PHP code for calling the Claude API using cURL and Guzzle. No official PHP SDK needed — these copy-paste examples work with Laravel, WordPress, and plain PHP scripts.",
      "date_published": "2026-05-14T12:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-react-chatbot-example/",
      "url": "https://claude-code-examples.vercel.app/claude-react-chatbot-example/",
      "title": "Claude API React Chatbot — Build a React Chat UI with Claude (2026)",
      "summary": "Build a working Claude chatbot in React using the Anthropic SDK via a backend proxy. Full source for the React chat UI, streaming hooks, and a minimal Express or Next.js API route.",
      "date_published": "2026-05-14T13:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-kotlin-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-kotlin-example/",
      "title": "Claude API Kotlin Example — Android & JVM (2026)",
      "summary": "Working Kotlin code to call the Claude API in 2026. No official SDK — use OkHttp or Ktor. Covers streaming SSE, suspend functions, Android integration, and Spring Boot backend.",
      "date_published": "2026-05-14T13:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-rag-python/",
      "url": "https://claude-code-examples.vercel.app/claude-rag-python/",
      "title": "RAG with Claude API — Retrieval Augmented Generation Python (2026)",
      "summary": "Build a RAG pipeline with the Claude API in Python. Embed documents, store in a vector database, retrieve relevant chunks, and pass them to Claude as context. Working code for 2026.",
      "date_published": "2026-05-14T13:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-summarization-python/",
      "url": "https://claude-code-examples.vercel.app/claude-summarization-python/",
      "title": "Claude API Text Summarization Python (2026 Working Examples)",
      "summary": "Working Python code to summarize text, documents, and URLs with the Claude API in 2026. Covers bullet-point summaries, extractive key points, long-document chunking, and structured JSON output.",
      "date_published": "2026-05-14T13:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-rust-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-rust-example/",
      "title": "Claude API Rust Example (2026 Working Code)",
      "summary": "Call the Anthropic Claude API from Rust using reqwest and tokio. Complete working examples: minimal request, system prompt, streaming SSE, retry logic, and async patterns.",
      "date_published": "2026-05-14T13:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-classification-python/",
      "url": "https://claude-code-examples.vercel.app/claude-classification-python/",
      "title": "Text Classification with Claude API in Python (2026)",
      "summary": "Classify text with Claude in Python: single-label, multi-label, zero-shot, and batch classification. Working code examples with structured JSON output and accuracy tips.",
      "date_published": "2026-05-14T13:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-aws-lambda/",
      "url": "https://claude-code-examples.vercel.app/claude-api-aws-lambda/",
      "title": "Claude API in AWS Lambda (Python, 2026 Working Example)",
      "summary": "Deploy Claude API calls in AWS Lambda with Python. Working handler pattern, streaming response, timeout configuration, environment variable setup, and API Gateway wiring.",
      "date_published": "2026-05-14T13:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-django-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-django-example/",
      "title": "Claude API Django Integration (2026 Working Example)",
      "summary": "Working Django code to integrate the Claude API in 2026. View-based chat handler, streaming responses, session conversation history, and Django REST framework API endpoint patterns.",
      "date_published": "2026-05-14T14:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-sentiment-analysis-python/",
      "url": "https://claude-code-examples.vercel.app/claude-sentiment-analysis-python/",
      "title": "Claude Sentiment Analysis Python (2026 Working Example)",
      "summary": "Working Python code to run sentiment analysis with the Claude API in 2026. Zero-shot classifier, custom sentiment scales, aspect-based analysis, and batch processing patterns.",
      "date_published": "2026-05-14T14:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-data-extraction-python/",
      "url": "https://claude-code-examples.vercel.app/claude-data-extraction-python/",
      "title": "Claude Structured Data Extraction Python (2026 Working Example)",
      "summary": "Working Python code to extract structured data from unstructured text using the Claude API in 2026. Extract entities, invoice fields, contract terms, and custom schemas to JSON.",
      "date_published": "2026-05-14T14:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-express-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-express-example/",
      "title": "Claude API with Express.js — Working Example (2026)",
      "summary": "How to call the Claude API from an Express.js backend in 2026. Covers minimal handler, streaming SSE to browser, conversation history with sessions, and rate-limit middleware.",
      "date_published": "2026-05-14T14:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-translation-python/",
      "url": "https://claude-code-examples.vercel.app/claude-translation-python/",
      "title": "Translate Text with Claude API (Python, 2026)",
      "summary": "How to translate text between 100+ languages using the Claude API in Python. Covers single-string translation, batch translation, language detection, and quality-controlled output with Pydantic.",
      "date_published": "2026-05-14T14:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-generation-python/",
      "url": "https://claude-code-examples.vercel.app/claude-code-generation-python/",
      "title": "Generate Code with Claude API — Python (2026)",
      "summary": "How to generate, explain, refactor, and review code using the Claude API in Python. Covers function generation, docstring writing, unit test generation, and code review with structured feedback.",
      "date_published": "2026-05-14T14:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-swift-example/",
      "url": "https://claude-code-examples.vercel.app/claude-api-swift-example/",
      "title": "Claude API Swift Example — iOS & macOS Integration (2026)",
      "summary": "Call the Anthropic Claude API from Swift using URLSession. Complete working examples for iOS and macOS: minimal request, streaming, async/await, and SwiftUI chat view.",
      "date_published": "2026-05-14T14:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-content-moderation-python/",
      "url": "https://claude-code-examples.vercel.app/claude-content-moderation-python/",
      "title": "Claude Content Moderation API — Python Guide (2026)",
      "summary": "Build content moderation systems with the Claude API in Python. Zero-shot moderation, multi-category classifiers, explanation generation, bulk moderation via Batch API, and policy customization.",
      "date_published": "2026-05-14T14:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-question-answering-python/",
      "url": "https://claude-code-examples.vercel.app/claude-question-answering-python/",
      "title": "Claude Question Answering API — Python Guide (2026)",
      "summary": "Build Q&A systems with the Claude API in Python. FAQ bots, document Q&A, context-grounded answering, confidence scoring, and unanswerable detection — complete working examples.",
      "date_published": "2026-05-14T15:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-chatbot-python/",
      "url": "https://claude-code-examples.vercel.app/claude-chatbot-python/",
      "title": "Build a Chatbot with Claude API in Python (2026 Guide)",
      "summary": "Step-by-step guide to building a Python chatbot with the Claude API. Terminal chatbot, Flask web chatbot, streaming, multi-persona, and context window management — all with working code.",
      "date_published": "2026-05-14T15:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-text-to-sql-python/",
      "url": "https://claude-code-examples.vercel.app/claude-text-to-sql-python/",
      "title": "Claude Text-to-SQL Python: Natural Language to SQL Queries",
      "summary": "Convert natural language questions to SQL queries using Claude API. Schema injection, safety guardrails, multi-table joins, self-healing queries, and BigQuery support — all with Python code examples.",
      "date_published": "2026-05-14T15:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-slack-bot-python/",
      "url": "https://claude-code-examples.vercel.app/claude-slack-bot-python/",
      "title": "Build a Claude Slack Bot in Python (Bolt SDK + Anthropic)",
      "summary": "Build a Slack bot powered by Claude using Python Bolt SDK. Mentions, DMs, thread-aware conversation history, slash commands, and streaming message updates — all with working code.",
      "date_published": "2026-05-14T15:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-discord-bot-python/",
      "url": "https://claude-code-examples.vercel.app/claude-discord-bot-python/",
      "title": "Claude Discord Bot Python — Build an AI Discord Bot with Anthropic",
      "summary": "Step-by-step guide to building a Claude-powered Discord bot in Python using discord.py. Covers slash commands, thread-aware conversation history, streaming, and rate limiting.",
      "date_published": "2026-05-14T15:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-email-automation-python/",
      "url": "https://claude-code-examples.vercel.app/claude-email-automation-python/",
      "title": "Claude Email Automation Python — AI Email Drafting, Classification & Replies",
      "summary": "Build email automation with Claude and Python. Covers drafting replies, classifying inbound email, extracting action items, bulk processing with Batch API, and Gmail/SMTP integration.",
      "date_published": "2026-05-14T15:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-cost-optimization/",
      "url": "https://claude-code-examples.vercel.app/claude-api-cost-optimization/",
      "title": "Claude API Cost Optimization — Reduce Anthropic API Bills by 50–90%",
      "summary": "Practical strategies to cut Claude API costs: model selection, prompt caching (90% savings on repeated context), Batch API (50% discount), token counting, max_tokens tuning, and request batching.",
      "date_published": "2026-05-14T15:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-github-actions/",
      "url": "https://claude-code-examples.vercel.app/claude-api-github-actions/",
      "title": "Claude API in GitHub Actions: Automated Code Review CI/CD (2026)",
      "summary": "Run Claude API calls inside GitHub Actions workflows. Automate code review, PR summarization, and test-failure triage with the Anthropic SDK in CI/CD pipelines.",
      "date_published": "2026-05-14T16:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-testing-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-testing-python/",
      "title": "Testing Claude API Applications in Python: Mocking & Integration Tests (2026)",
      "summary": "How to unit test and integration test Python apps that call the Claude API. Mock the Anthropic client with unittest.mock, write deterministic tests, and add CI test coverage.",
      "date_published": "2026-05-14T16:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-google-cloud-run/",
      "url": "https://claude-code-examples.vercel.app/claude-api-google-cloud-run/",
      "title": "Deploy Claude API App to Google Cloud Run: Complete Guide (2026)",
      "summary": "Deploy a Python Flask app that calls the Claude API to Google Cloud Run. Store the Anthropic API key in Secret Manager, containerize with Docker, and deploy serverless.",
      "date_published": "2026-05-14T16:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-rate-limits-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-rate-limits-python/",
      "title": "Claude API Rate Limits: Handle 429 Errors in Python (2026)",
      "summary": "Fix Anthropic API rate limit errors (429, overloaded_error) in Python. Working retry logic with exponential backoff, token-per-minute tracking, and concurrency controls.",
      "date_published": "2026-05-14T16:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-authentication/",
      "url": "https://claude-code-examples.vercel.app/claude-api-authentication/",
      "title": "Claude API Authentication: API Keys & Best Practices (2026)",
      "summary": "How to authenticate with the Anthropic Claude API. Set API keys securely in Python, Node.js, and shell. Rotate keys, use environment variables, and avoid common mistakes.",
      "date_published": "2026-05-14T16:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-timeout-retry-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-timeout-retry-python/",
      "title": "Claude API Timeout & Retry Handling in Python (2026)",
      "summary": "Fix Claude API timeout errors in Python. Set request timeouts, implement retry logic for network errors and 500s, and handle streaming timeouts correctly.",
      "date_published": "2026-05-14T16:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-aws-bedrock-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-aws-bedrock-python/",
      "title": "Claude API via AWS Bedrock Python: boto3 Complete Guide (2026)",
      "summary": "Call Claude via AWS Bedrock in Python using boto3. Covers bedrock-runtime invoke_model, streaming, IAM setup, and cost comparison vs direct Anthropic API.",
      "date_published": "2026-05-14T16:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/openai-to-claude-migration-python/",
      "url": "https://claude-code-examples.vercel.app/openai-to-claude-migration-python/",
      "title": "Migrate from OpenAI to Claude API in Python: Drop-in Replacement Guide (2026)",
      "summary": "Step-by-step guide to switching from OpenAI GPT to Anthropic Claude in Python. Side-by-side API differences, model mapping, and a drop-in wrapper class.",
      "date_published": "2026-05-14T16:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-monitoring-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-monitoring-python/",
      "title": "Monitoring the Claude API in Python: Logging, Metrics & Observability (2026)",
      "summary": "Log every Claude API call, track token usage and latency, set cost alerts, and integrate with Datadog, Prometheus, or custom dashboards. Production-ready Python patterns.",
      "date_published": "2026-05-14T17:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-docker-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-docker-python/",
      "title": "Dockerize Claude API Python App: Production Dockerfile (2026)",
      "summary": "Step-by-step Dockerfile and Docker Compose setup for containerizing Claude API Python applications in 2026. Covers secret injection, multi-stage builds, and health checks.",
      "date_published": "2026-05-14T17:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-websocket-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-websocket-python/",
      "title": "Claude API WebSocket Streaming Python: Real-Time Chat (2026)",
      "summary": "Build real-time Claude API streaming over WebSocket in Python (2026). Uses FastAPI WebSockets + AsyncAnthropic to push tokens to the browser as they arrive.",
      "date_published": "2026-05-14T17:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-streamlit-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-streamlit-python/",
      "title": "Build a Claude API Chatbot with Streamlit Python (2026)",
      "summary": "Build a streaming Claude API chatbot with Streamlit in Python (2026). Uses st.session_state for conversation history and st.write_stream for real-time token display.",
      "date_published": "2026-05-14T17:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-github-copilot/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-github-copilot/",
      "title": "Claude Code vs GitHub Copilot (2026): Which AI Coding Assistant Wins?",
      "summary": "Detailed comparison of Claude Code vs GitHub Copilot in 2026. Context window, agentic tasks, code review, pricing, IDE support, and when to choose each.",
      "date_published": "2026-05-14T17:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-llamaindex-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-llamaindex-python/",
      "title": "Claude API with LlamaIndex in Python (2026 Working Example)",
      "summary": "Use the Claude API with LlamaIndex in Python 2026. Build RAG pipelines, query engines, and LlamaIndex agents backed by Claude Sonnet. Working code examples.",
      "date_published": "2026-05-14T17:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-gradio-python/",
      "url": "https://claude-code-examples.vercel.app/claude-api-gradio-python/",
      "title": "Claude API with Gradio in Python (2026 Working Example)",
      "summary": "Use the Claude API with Gradio in Python 2026. Build a streaming chatbot, image analysis app, and multi-modal demo with gr.ChatInterface and gr.Blocks. Working code.",
      "date_published": "2026-05-14T17:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-vs-gemini/",
      "url": "https://claude-code-examples.vercel.app/claude-api-vs-gemini/",
      "title": "Claude API vs Google Gemini API — 2026 Developer Comparison",
      "summary": "Side-by-side comparison of Anthropic Claude API vs Google Gemini API: pricing, context window, Python SDK, tool use, and migration code. With working examples.",
      "date_published": "2026-05-14T18:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-sonnet-vs-gpt4/",
      "url": "https://claude-code-examples.vercel.app/claude-sonnet-vs-gpt4/",
      "title": "Claude Sonnet 4.6 vs GPT-4o — 2026 Model Comparison",
      "summary": "Practical comparison of Claude Sonnet 4.6 vs GPT-4o for developers: pricing, context window, coding, tool use, and when to use each. With Python examples.",
      "date_published": "2026-05-14T18:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-pricing-2026/",
      "url": "https://claude-code-examples.vercel.app/claude-api-pricing-2026/",
      "title": "Claude API Pricing 2026 — Complete Developer Guide",
      "summary": "Complete Claude API pricing guide for 2026: all model prices, prompt caching savings, batch API discount, context window costs, and how to estimate your bill. With Python examples.",
      "date_published": "2026-05-14T18:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-haiku-vs-gpt35/",
      "url": "https://claude-code-examples.vercel.app/claude-haiku-vs-gpt35/",
      "title": "Claude Haiku vs GPT-3.5-Turbo — 2026 Budget LLM API Comparison",
      "summary": "Claude Haiku vs GPT-3.5-Turbo: price, speed, context window, and code examples in 2026. Which budget LLM API is faster and cheaper for production?",
      "date_published": "2026-05-14T18:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-api-vs-azure-openai/",
      "url": "https://claude-code-examples.vercel.app/claude-api-vs-azure-openai/",
      "title": "Claude API vs Azure OpenAI — 2026 Enterprise LLM Comparison",
      "summary": "Claude API vs Azure OpenAI: enterprise pricing, compliance, latency, Python examples, and deployment comparison. Which LLM platform wins for enterprise 2026?",
      "date_published": "2026-05-14T18:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/best-llm-api-2026/",
      "url": "https://claude-code-examples.vercel.app/best-llm-api-2026/",
      "title": "Best LLM API 2026 — Claude, GPT-4o, Gemini, Mistral Compared",
      "summary": "Comprehensive 2026 guide to the best LLM APIs: Claude, GPT-4o, Gemini, Mistral. Pricing, context windows, speed, and Python code examples to help you choose.",
      "date_published": "2026-05-14T18:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/git-diff-summarize-python/",
      "url": "https://claude-code-examples.vercel.app/git-diff-summarize-python/",
      "title": "Summarize Git Diffs with Claude AI (Python Code)",
      "summary": "Use the Claude API to auto-generate pull request summaries from git diffs. Working Python code plus an instant no-code tool.",
      "date_published": "2026-05-14T18:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/llm-pricing-calculator-python/",
      "url": "https://claude-code-examples.vercel.app/llm-pricing-calculator-python/",
      "title": "LLM Pricing Calculator in Python (Claude, OpenAI, Gemini)",
      "summary": "Python code to calculate and compare API costs across Claude, GPT-4o, and Gemini for any prompt or workload. Includes a free interactive tool.",
      "date_published": "2026-05-14T18:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-extended-thinking-python/",
      "url": "https://claude-code-examples.vercel.app/claude-extended-thinking-python/",
      "title": "Claude Extended Thinking API Python Examples (2026)",
      "summary": "How to use Claude's extended thinking mode in Python. Working code for streaming and non-streaming extended thinking with token budgets and cost estimates.",
      "date_published": "2026-05-14T19:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-cursor/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-cursor/",
      "title": "Claude Code vs Cursor: Which AI Coding Tool Wins in 2026?",
      "summary": "Detailed comparison of Claude Code and Cursor AI in 2026. Covers pricing, context window, codebase indexing, terminal access, CI/CD support, and which tool wins for each use case.",
      "date_published": "2026-05-14T19:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-hooks-tutorial/",
      "url": "https://claude-code-examples.vercel.app/claude-code-hooks-tutorial/",
      "title": "Claude Code Hooks: Automate Pre/Post Actions (2026 Guide)",
      "summary": "How to configure Claude Code hooks to run shell commands before or after tool calls. Automate linting, testing, notifications, and logging on every Claude Code action.",
      "date_published": "2026-05-14T19:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-slash-commands/",
      "url": "https://claude-code-examples.vercel.app/claude-code-slash-commands/",
      "title": "Claude Code Slash Commands: Complete Reference (2026)",
      "summary": "Complete list of Claude Code slash commands (/help, /clear, /compact, /review, /init, /memory) with usage examples, keyboard shortcuts, and when to use each command.",
      "date_published": "2026-05-14T19:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-memory-guide/",
      "url": "https://claude-code-examples.vercel.app/claude-code-memory-guide/",
      "title": "Claude Code Memory & CLAUDE.md: Complete Guide (2026)",
      "summary": "How to use CLAUDE.md files and the /memory command in Claude Code to give Claude persistent context about your project, team conventions, and architecture.",
      "date_published": "2026-05-14T19:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-permissions-guide/",
      "url": "https://claude-code-examples.vercel.app/claude-code-permissions-guide/",
      "title": "Claude Code Permissions & Allowed Tools Guide (2026)",
      "summary": "Configure what Claude Code is allowed to do: restrict shell commands, limit file access, set up per-project permissions, and use allowedTools in CLI mode.",
      "date_published": "2026-05-14T19:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-mcp-setup/",
      "url": "https://claude-code-examples.vercel.app/claude-code-mcp-setup/",
      "title": "Claude Code MCP Server Setup: Step-by-Step Guide (2026)",
      "summary": "How to configure MCP (Model Context Protocol) servers in Claude Code — add filesystem, database, GitHub, and custom MCP tools using settings.json.",
      "date_published": "2026-05-14T19:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-git-workflow/",
      "url": "https://claude-code-examples.vercel.app/claude-code-git-workflow/",
      "title": "Claude Code Git Workflow: Commits, PRs & Diffs (2026)",
      "summary": "Use Claude Code for git operations: generate commit messages, review diffs, write PR descriptions, resolve merge conflicts, and automate git workflows.",
      "date_published": "2026-05-14T20:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-context-window-guide/",
      "url": "https://claude-code-examples.vercel.app/claude-code-context-window-guide/",
      "title": "Claude Code Context Window: /compact and Long Sessions (2026)",
      "summary": "How Claude Code's context window works, when to use /compact vs /clear, how to structure long sessions, and how to avoid losing work when context fills up.",
      "date_published": "2026-05-14T20:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-multi-agent-patterns/",
      "url": "https://claude-code-examples.vercel.app/claude-code-multi-agent-patterns/",
      "title": "Claude Code Multi-Agent & Parallel Tasks (2026)",
      "summary": "How to use Claude Code's multi-agent capabilities: spawn subagents for parallel work, use the Agent tool, run background tasks, and coordinate multiple Claude instances.",
      "date_published": "2026-05-14T20:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-review-workflow/",
      "url": "https://claude-code-examples.vercel.app/claude-code-review-workflow/",
      "title": "Claude Code for Code Review: PR Review Workflow (2026)",
      "summary": "Automate PR review, diff analysis, and pre-commit checks with Claude Code. Includes workflow examples for solo developers and teams.",
      "date_published": "2026-05-14T20:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-settings-json-reference/",
      "url": "https://claude-code-examples.vercel.app/claude-code-settings-json-reference/",
      "title": "Claude Code settings.json: Complete Reference (2026)",
      "summary": "Complete reference for Claude Code's settings.json configuration file: all keys, values, and examples for permissions, hooks, MCP servers, model selection, and more.",
      "date_published": "2026-05-14T20:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-installation-setup/",
      "url": "https://claude-code-examples.vercel.app/claude-code-installation-setup/",
      "title": "Claude Code Installation & Setup: Mac, Windows, Linux (2026)",
      "summary": "Step-by-step guide to installing Claude Code on Mac, Windows, and Linux. Includes API key setup, first run, and common installation problems with fixes.",
      "date_published": "2026-05-14T20:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-projects-feature/",
      "url": "https://claude-code-examples.vercel.app/claude-code-projects-feature/",
      "title": "Claude Code Projects: Organize Sessions & Share Context (2026)",
      "summary": "How to use Claude Code's Projects feature to organize sessions, share context across conversations, and manage team context for different codebases.",
      "date_published": "2026-05-14T20:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-debugging-workflow/",
      "url": "https://claude-code-examples.vercel.app/claude-code-debugging-workflow/",
      "title": "Claude Code Debugging: Errors, Stack Traces & Bugs (2026)",
      "summary": "Use Claude Code to debug errors, analyze stack traces, find root causes, and fix bugs. Includes workflows for Python, JavaScript/Node.js, and general debugging patterns.",
      "date_published": "2026-05-14T20:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-refactoring-guide/",
      "url": "https://claude-code-examples.vercel.app/claude-code-refactoring-guide/",
      "title": "Claude Code Refactoring: Large-Scale Code Changes (2026)",
      "summary": "How to use Claude Code for large-scale refactoring: rename symbols across a codebase, extract modules, migrate frameworks, and restructure code safely.",
      "date_published": "2026-05-14T21:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-aider/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-aider/",
      "title": "Claude Code vs Aider: Which AI Coding CLI Wins in 2026?",
      "summary": "Detailed comparison of Claude Code vs Aider: features, pricing, model support, git workflow, context handling, and when to choose each AI coding CLI.",
      "date_published": "2026-05-14T21:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-headless-mode/",
      "url": "https://claude-code-examples.vercel.app/claude-code-headless-mode/",
      "title": "Claude Code Headless Mode: Non-Interactive & CI Usage (2026)",
      "summary": "How to run Claude Code non-interactively: --print flag, piping input, CI/CD automation, scripting, and batch processing with Claude Code in headless mode.",
      "date_published": "2026-05-14T21:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-cost-pricing/",
      "url": "https://claude-code-examples.vercel.app/claude-code-cost-pricing/",
      "title": "Claude Code Cost & Pricing Guide 2026: Plans, API, and Usage",
      "summary": "Complete guide to Claude Code pricing in 2026: Pro vs Max plan, API billing, cost per session, how to estimate usage, and tips to reduce Claude Code costs.",
      "date_published": "2026-05-14T21:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-windsurf/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-windsurf/",
      "title": "Claude Code vs Windsurf (2026 Comparison)",
      "summary": "Detailed comparison of Claude Code and Windsurf (Codeium). Feature table, pricing breakdown, and use-case verdicts to help you pick the right AI coding tool.",
      "date_published": "2026-05-14T21:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-subagents/",
      "url": "https://claude-code-examples.vercel.app/claude-code-subagents/",
      "title": "Claude Code Subagents: Parallel AI Tasks (2026 Guide)",
      "summary": "How to use Claude Code subagents to run parallel AI tasks. Complete guide with examples for spawning subagents, passing context, and aggregating results.",
      "date_published": "2026-05-14T21:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-ide-extensions/",
      "url": "https://claude-code-examples.vercel.app/claude-code-ide-extensions/",
      "title": "Claude Code IDE Extensions: VS Code & JetBrains Setup (2026)",
      "summary": "How to install and use Claude Code extensions for VS Code and JetBrains IDEs. Step-by-step setup, keyboard shortcuts, and tips for getting the most out of Claude Code inside your editor.",
      "date_published": "2026-05-14T21:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-devin/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-devin/",
      "title": "Claude Code vs Devin AI: 2026 Comparison for Developers",
      "summary": "Side-by-side comparison of Claude Code and Devin AI in 2026. Compare autonomy, pricing, IDE integration, CI support, and which tasks each agent handles best.",
      "date_published": "2026-05-14T22:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-cline/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-cline/",
      "title": "Claude Code vs Cline: 2026 Comparison (VS Code AI Agent)",
      "summary": "Claude Code vs Cline (formerly Claude-Dev) — detailed 2026 comparison. Both use Claude models. See how they differ on IDE integration, autonomy, pricing, CLAUDE.md support, and best use cases.",
      "date_published": "2026-05-14T22:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-custom-commands/",
      "url": "https://claude-code-examples.vercel.app/claude-code-custom-commands/",
      "title": "Claude Code Custom Slash Commands: Complete 2026 Guide",
      "summary": "How to create custom slash commands in Claude Code using CLAUDE.md and the .claude/commands/ directory. Covers command syntax, arguments, template variables, and real-world examples.",
      "date_published": "2026-05-14T22:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-amazon-q/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-amazon-q/",
      "title": "Claude Code vs Amazon Q Developer (2026 Comparison)",
      "summary": "Detailed comparison of Claude Code vs Amazon Q Developer in 2026. Feature table, pricing, AWS integration depth, IDE support, and when each tool is the right choice.",
      "date_published": "2026-05-14T22:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-vs-gemini-code-assist/",
      "url": "https://claude-code-examples.vercel.app/claude-code-vs-gemini-code-assist/",
      "title": "Claude Code vs Gemini Code Assist (2026 Comparison)",
      "summary": "Claude Code vs Google Gemini Code Assist 2026: feature table, context window, pricing, Google Workspace integration, and which tool wins for different teams.",
      "date_published": "2026-05-14T22:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-plan-pricing/",
      "url": "https://claude-code-examples.vercel.app/claude-code-plan-pricing/",
      "title": "Claude Code Pricing Plans 2026 — Pro vs Max vs Team vs Enterprise",
      "summary": "Full breakdown of Claude Code subscription plans in 2026: Pro ($20/mo), Max ($100/mo, $200/mo), Team, and Enterprise. What's included, usage limits, and how to pick the right plan.",
      "date_published": "2026-05-14T22:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/best-prompts-for-claude-code/",
      "url": "https://claude-code-examples.vercel.app/best-prompts-for-claude-code/",
      "title": "Best Prompts for Claude Code (2026 — 12 Battle-Tested Examples)",
      "summary": "Twelve specific, reusable Claude Code prompts that consistently outperform vague requests. Copy-paste templates for code review, debugging, testing, refactoring, and documentation.",
      "date_published": "2026-05-14T22:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-code-review/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-code-review/",
      "title": "Claude Code Prompt Template for Code Review (Copy-Paste, 2026)",
      "summary": "Specific Claude Code prompt templates for reviewing pull requests, finding security issues, ranking severity, and producing minimal-diff fixes. Copy, fill the brackets, paste.",
      "date_published": "2026-05-14T22:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-refactoring/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-refactoring/",
      "title": "Claude Code Prompt for Refactoring (Copy-Paste Templates, 2026)",
      "summary": "Refactor with Claude Code without surprise scope creep. Copy-paste prompts for safe rename refactors, extract-function, dead-code removal, and large-scale migrations.",
      "date_published": "2026-05-14T23:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-testing/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-testing/",
      "title": "Claude Code System Prompt for Testing (Templates That Work, 2026)",
      "summary": "Concrete Claude Code prompts to generate unit tests, find missing test coverage, write property-based tests, and diagnose flaky tests. Copy, fill, paste.",
      "date_published": "2026-05-14T23:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-cheatsheet/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-cheatsheet/",
      "title": "Claude Code Prompt Cheatsheet (Quick-Reference, 2026)",
      "summary": "One-page cheatsheet of Claude Code prompt patterns: role + constraints + output shape + budget. Plus 10 fill-in-the-bracket templates you can use immediately.",
      "date_published": "2026-05-14T23:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-md-examples-template/",
      "url": "https://claude-code-examples.vercel.app/claude-md-examples-template/",
      "title": "CLAUDE.md Examples & Template (2026 Working Reference)",
      "summary": "Working CLAUDE.md examples for Python, Node.js, monorepo, and team projects. Copy the template, fill in the brackets, drop into your repo root.",
      "date_published": "2026-05-14T23:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/how-to-write-claude-code-prompts/",
      "url": "https://claude-code-examples.vercel.app/how-to-write-claude-code-prompts/",
      "title": "How to Write Claude Code Prompts (2026 Guide)",
      "summary": "Step-by-step guide to writing Claude Code prompts that produce specific, actionable output. Pattern + worked examples + common mistakes + how to debug a bad response.",
      "date_published": "2026-05-14T23:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-library/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-library/",
      "title": "Claude Code Prompt Library (Curated 2026 Collection)",
      "summary": "A curated library of Claude Code prompts organised by workflow: review, debug, test, refactor, document, deploy. Open-source examples, plus the 30-prompt premium PDF.",
      "date_published": "2026-05-14T23:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompts-debugging/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompts-debugging/",
      "title": "Claude Code Prompts for Debugging (10 Specific Templates, 2026)",
      "summary": "Ten Claude Code prompt templates for debugging: stack-trace autopsy, flaky tests, memory leaks, performance regressions, and the bisect-without-bisect prompt. Copy and paste.",
      "date_published": "2026-05-14T23:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-documentation/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-documentation/",
      "title": "Claude Code Prompt for Documentation (Templates That Don't Read Like AI Slop, 2026)",
      "summary": "Claude Code prompt templates for READMEs, changelogs, API reference, runbooks, and PR descriptions — without the marketing-speak that makes AI-written docs obvious.",
      "date_published": "2026-05-15T00:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-plan-mode/",
      "url": "https://claude-code-examples.vercel.app/claude-code-plan-mode/",
      "title": "Claude Code Plan Mode: How /plan Works (2026 Guide)",
      "summary": "How to use Claude Code's /plan command to get a full implementation plan before any code is written. Covers plan review, approval, iteration, and when to use plan mode vs direct execution.",
      "date_published": "2026-05-15T00:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-context-compaction/",
      "url": "https://claude-code-examples.vercel.app/claude-code-context-compaction/",
      "title": "Claude Code Context Compaction: How Auto-Compact Works (2026)",
      "summary": "How Claude Code's automatic context compaction works, when it triggers, what it keeps, and how to control it. Covers the /compact command, compact hooks, and strategies for very long sessions.",
      "date_published": "2026-05-15T00:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-worktrees/",
      "url": "https://claude-code-examples.vercel.app/claude-code-worktrees/",
      "title": "Claude Code Git Worktrees: Run Parallel Sessions (2026 Guide)",
      "summary": "How to use git worktrees with Claude Code to run multiple parallel, isolated coding sessions on different branches simultaneously. Setup, patterns, and best practices for parallel AI-assisted developm",
      "date_published": "2026-05-15T00:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-enterprise/",
      "url": "https://claude-code-examples.vercel.app/claude-code-enterprise/",
      "title": "Claude Code Enterprise: Team Plans, SSO & Admin Controls (2026)",
      "summary": "How Claude Code Enterprise works for teams: SSO/SAML setup, usage policies, admin controls, audit logs, and how it differs from individual Pro and Max plans.",
      "date_published": "2026-05-15T00:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-bedrock/",
      "url": "https://claude-code-examples.vercel.app/claude-code-bedrock/",
      "title": "Claude Code on AWS Bedrock: Setup & Configuration (2026)",
      "summary": "How to run Claude Code via AWS Bedrock instead of Anthropic's direct API. Covers IAM setup, environment variables, model IDs, and when to use Bedrock vs the Anthropic API.",
      "date_published": "2026-05-15T00:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-docker/",
      "url": "https://claude-code-examples.vercel.app/claude-code-docker/",
      "title": "Claude Code in Docker: Container & Remote Setup (2026)",
      "summary": "How to run Claude Code inside Docker containers — for reproducible dev environments, remote servers, CI pipelines, and sandboxed agentic workloads. Full Dockerfile and docker-compose examples.",
      "date_published": "2026-05-15T00:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-django/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-django/",
      "title": "Claude Code Prompts for Django (Models, Migrations, DRF) 2026",
      "summary": "Copy-paste Claude Code prompts for Django 5 models, safe migrations, DRF serializers, N+1 query fixes, and select_related optimisation. Battle-tested 2026.",
      "date_published": "2026-05-15T00:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-fastapi/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-fastapi/",
      "title": "Claude Code Prompts for FastAPI (Routes, Pydantic, Async) 2026",
      "summary": "Battle-tested Claude Code prompts for FastAPI routes, Pydantic v2 models, dependency injection, and async SQLAlchemy. Copy, fill brackets, paste.",
      "date_published": "2026-05-15T01:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-rails/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-rails/",
      "title": "Claude Code Prompts for Rails (Models, Migrations, Jobs) 2026",
      "summary": "Copy-paste Claude Code prompts for Rails 7.1 + Hotwire — models, strong_params controllers, ActiveJob workers, RSpec specs. Matches modern Rails idioms.",
      "date_published": "2026-05-15T01:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-laravel/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-laravel/",
      "title": "Claude Code Prompts for Laravel 11 (Eloquent, Jobs, Tests)",
      "summary": "Copy-paste Claude Code prompts for Laravel 11 — Eloquent models, FormRequests, queued jobs, Pest tests, and Filament admin. Matches Laravel conventions out of the box.",
      "date_published": "2026-05-15T01:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-spring-boot/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-spring-boot/",
      "title": "Claude Code Prompts for Spring Boot 3 (Java 21, JPA, Tests)",
      "summary": "Copy-paste Claude Code prompts for Spring Boot 3 — JPA entities, controllers, Liquibase migrations, Testcontainers tests. Java 21 + records-first.",
      "date_published": "2026-05-15T01:28:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-gin/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-gin/",
      "title": "Claude Code Prompts for Gin (Go Web Framework) 2026",
      "summary": "Copy-paste Claude Code prompts for Gin handlers, middleware, sqlc queries, and table-driven tests. Go 1.22 idioms with context-first error handling.",
      "date_published": "2026-05-15T01:36:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-sveltekit/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-sveltekit/",
      "title": "Claude Code Prompts for SvelteKit 2 (Load, Actions, Forms)",
      "summary": "Copy-paste Claude Code prompts for SvelteKit 2 — +page.server.ts loaders, form actions, hooks, and Svelte 5 runes. Plus Drizzle and Lucia patterns.",
      "date_published": "2026-05-15T01:44:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-nuxt/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-nuxt/",
      "title": "Claude Code Prompts for Nuxt 3 (Server Routes, Composables)",
      "summary": "Copy-paste Claude Code prompts for Nuxt 3 — server routes, composables, useFetch vs $fetch, Pinia stores, and Nitro middleware. Vue 3 + script setup.",
      "date_published": "2026-05-15T01:52:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-astro/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-astro/",
      "title": "Claude Code Prompts for Astro 4 (Content, Islands, Endpoints)",
      "summary": "Copy-paste Claude Code prompts for Astro 4 — content collections, framework islands, server endpoints, MDX. Hybrid rendering with React/Svelte islands.",
      "date_published": "2026-05-15T02:00:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-remix/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-remix/",
      "title": "Claude Code Prompts for Remix (Loaders, Actions, Forms) 2026",
      "summary": "Copy-paste Claude Code prompts for Remix — loaders, actions, nested routes, Conform forms, and pessimistic vs optimistic UI patterns. React Router 7 ready.",
      "date_published": "2026-05-15T02:08:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-vue/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-vue/",
      "title": "Claude Code Prompts for Vue 3 (Composition API, Pinia, Vitest)",
      "summary": "Copy-paste Claude Code prompts for Vue 3 — script setup, composables, Pinia, Vitest with @vue/test-utils. Avoids Options API drift and props/emit gotchas.",
      "date_published": "2026-05-15T02:16:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-angular/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-angular/",
      "title": "Claude Code Prompts for Angular 18 (Signals, Standalone, Jest)",
      "summary": "Copy-paste Claude Code prompts for Angular 18 — signals, standalone components, the new control flow, inject(), and Jest tests. No NgModules.",
      "date_published": "2026-05-15T02:24:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-prisma/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-prisma/",
      "title": "Claude Code Prompts for Prisma (Schema, Migrations, Seed)",
      "summary": "Copy-paste Claude Code prompts for Prisma — schema design, safe migrations, seed scripts, and avoiding the N+1 trap with include vs select.",
      "date_published": "2026-05-15T02:32:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-drizzle/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-drizzle/",
      "title": "Claude Code Prompts for Drizzle ORM (Schema, Migrations, RLS)",
      "summary": "Copy-paste Claude Code prompts for Drizzle ORM — schema definitions, migrations with drizzle-kit, relational queries, and Postgres RLS. Type-safe end-to-end.",
      "date_published": "2026-05-15T02:40:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-sqlalchemy/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-sqlalchemy/",
      "title": "Claude Code Prompts for SQLAlchemy 2.0 (Async, Alembic, N+1)",
      "summary": "Copy-paste Claude Code prompts for SQLAlchemy 2.0 async — declarative models with Mapped types, Alembic migrations, and selectinload N+1 fixes.",
      "date_published": "2026-05-15T02:48:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-supabase/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-supabase/",
      "title": "Claude Code Prompts for Supabase (RLS, Edge Functions, Auth)",
      "summary": "Copy-paste Claude Code prompts for Supabase — RLS policies, edge functions, Auth helpers, and Postgres functions. Avoids the common 'auth.uid() returns null' trap.",
      "date_published": "2026-05-15T02:56:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-tailwind/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-tailwind/",
      "title": "Claude Code Prompts for Tailwind v4 (Migration, Linting, Design)",
      "summary": "Copy-paste Claude Code prompts for Tailwind v4 — config migration, custom utilities, dark-mode, design-token discipline, and finding ad-hoc colour drift.",
      "date_published": "2026-05-15T03:04:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-shadcn/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-shadcn/",
      "title": "Claude Code Prompts for shadcn/ui (CLI, Customizing, Updates)",
      "summary": "Copy-paste Claude Code prompts for shadcn/ui — installing components, customizing without losing upgrade path, theme overrides, and Radix accessibility checks.",
      "date_published": "2026-05-15T03:12:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-playwright/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-playwright/",
      "title": "Claude Code Prompts for Playwright (Stable Selectors, Flake Hunt)",
      "summary": "Copy-paste Claude Code prompts for Playwright — writing stable role-based selectors, killing flaky tests, network-mocking, and visual-regression baselines.",
      "date_published": "2026-05-15T03:20:00.000Z"
    },
    {
      "id": "https://claude-code-examples.vercel.app/claude-code-prompt-pytest/",
      "url": "https://claude-code-examples.vercel.app/claude-code-prompt-pytest/",
      "title": "Claude Code Prompts for pytest (Fixtures, Parametrize, Mocks)",
      "summary": "Copy-paste Claude Code prompts for pytest — fixture design, parametrize, factory-boy, async tests, and avoiding test interdependence. Python 3.12 ready.",
      "date_published": "2026-05-15T03:28:00.000Z"
    }
  ]
}