8 seats — Friday 10th April 2026 · Richmond, SW London Book now — £599 →
Build With ClaudeBook a seat →
~//guides/claude-api-getting-started
# Build With Claude Guide · 7 min read

Claude API Getting Started: A Non-Developer's Guide

A plain-English explanation of what the Claude API is, what you can build with it, how much it costs, and how to get started without a software engineering background.

The claude.ai chat interface is where most people start. But the real power — automation, integration, scale — lives in the API. This guide explains what it is and how to use it, even if you've never written a line of code.

The API vs. the Chat Interface

When you use claude.ai, you are using a web application that Anthropic built on top of their own API. The API is the underlying service — and it is available to anyone.

The difference matters because the API enables things the chat interface can't:

Chat interface
  • ·Manual — you type, it responds
  • ·One conversation at a time
  • ·No integration with other tools
  • ·No automation or scheduling
  • ·Great for: exploration and learning
API
  • ·Programmatic — runs in code or no-code tools
  • ·Process hundreds of inputs at once
  • ·Connects to any tool (CRM, email, database)
  • ·Runs on a schedule, triggered by events
  • ·Great for: automation and products

What You Can Build With the API

Here are concrete use cases — in order of technical difficulty:

No codeZapier, Make, n8n
  • $Auto-summarise incoming emails and create tasks in your project management tool
  • $When a new form submission arrives, draft a personalised reply and add to a Google Sheet
  • $Daily digest: pull news articles, summarise them, send to your inbox
Low codeBolt.new, Replit, Claude Code
  • $A custom chatbot trained on your company's FAQs
  • $A document analyser that extracts key terms from contracts
  • $A report generator that takes data input and writes a narrative summary
Full codePython, Node.js, Next.js
  • $Batch processing hundreds of customer support tickets for sentiment analysis
  • $A product that users sign up for and pays per AI call
  • $An AI agent that browses the web and compiles research reports automatically

Understanding Costs

API pricing is based on tokens — roughly 750 words per 1,000 tokens. You pay for what you use. No subscription, no minimum.

ModelSpeedInput (per M tokens)Best for
Claude HaikuFastest~$0.25High-volume, simple tasks
Claude SonnetBalanced~$3Most everyday uses
Claude OpusPowerful~$15Complex reasoning, long documents

Practical example: processing 1,000 customer emails (average 200 words each) with Claude Haiku to classify them costs approximately $0.05. That's five cents.

Getting Your First API Call Working

Here is the fastest route to your first working API call, no prior coding needed:

01
Get an API key
Go to console.anthropic.com → Create account → API Keys → Create Key. Copy it somewhere safe. You only see it once.
02
Open Claude.ai and ask for help
Tell Claude: "I have an Anthropic API key. Help me write a simple Python script that sends a message to Claude and prints the response. I am a beginner." It will write working code for you.
03
Run it in Replit
Paste the code into replit.com. Set your API key as an environment variable (Replit has a built-in Secrets tool). Click Run.
04
You have your first API call
Once it works, modify the message. Then ask Claude to extend it into something useful for your workflow.

The System Prompt: Your Secret Weapon

The most powerful feature of the API that the chat interface doesn't expose clearly is the system prompt. This is an instruction you give Claude before every conversation — defining its role, personality, and constraints.

Example system prompt:

system: |

You are a customer support agent for Acme Ltd, a UK-based plumbing supply company.

Only answer questions about products, orders, and delivery.

If asked anything outside this scope, politely redirect to our contact form.

Always be brief, clear, and professional. Use British English.

With a system prompt, every API call inherits these instructions. You build once, it behaves consistently every time.

$ tools --recommended

Start with the right tools

Claude ProRecommended

The AI used in the Build With Claude workshop. Best for building and code generation.

£18/month
ChatGPT PlusPopular

OpenAI's flagship. Strong for research, image generation, and browsing.

£20/month
Notion AIProductivity

AI built into your workspace. Useful for specs, planning, and docs.

From £8/month

# Some links may be affiliate links. We only recommend tools we actually use.

Frequently Asked Questions

What is an API and why does it matter?+
API stands for Application Programming Interface. It is a way for software to talk to other software. The Claude API lets you access Claude's capabilities from your own applications, automations, and workflows — not just from the claude.ai chat interface.
Do I need to be a developer to use the Claude API?+
Basic API usage doesn't require deep programming knowledge. With tools like Zapier, Make, and n8n, you can connect Claude to other apps without writing code. To build custom applications, some comfort with code (or working with Claude to write it) is needed.
How much does the Claude API cost?+
Claude API pricing is based on tokens (roughly words). Claude Haiku (fastest, cheapest) costs around $0.25 per million input tokens. Claude Sonnet (balanced) around $3. Claude Opus (most capable) around $15. For context: processing 100 emails costs a few cents at Haiku pricing.
What can I build with the Claude API that I can't do in the chat interface?+
The API enables automation (run Claude without opening a browser), integration (connect Claude to your CRM, email, database), customisation (set a system prompt that applies to every conversation), and scale (process hundreds or thousands of inputs automatically).
Is there a free tier for the Claude API?+
Anthropic provides new API accounts with some initial free credits to get started. After that, you pay per usage. There is no ongoing free tier for the API — unlike the claude.ai chat interface which has a free plan.
$ one-day workshop · richmond london

Stop reading. Start building.

Build With Claude is a one-day hands-on workshop where you arrive with an idea and leave with a working tool. 8 seats. Richmond, SW London. Expert in the room all day.

Reserve your seat →

Related Guides