Exam guide·7 min read·5 July 2026

Anthropic Academy Certificate: CCA-F Prep Guide 2026

Understand how the Anthropic Academy certificate relates to the Claude Certified Architect exam, which courses matter most, and how to build a focused 3-week prep plan.

By Solomon Udoh · AI Architect & Certification Lead

Anthropic Academy Certificate: CCA-F Prep Guide 2026

Candidates searching for the anthropic academy certificate are usually asking two distinct questions at once: what do the Anthropic Academy course badges actually certify, and how do they connect to the Claude Certified Architect, Foundations (CCA-F) credential that carries real professional weight? This guide answers both, maps the five exam domains to the courses that address them, and gives you a structured three-week plan grounded in the exam's published weightings.

What is the Anthropic Academy certificate, and is it the same as the CCA-F?

No, they are not the same thing. Anthropic Academy is Anthropic's free learning platform. Completing a course there earns you a course-completion badge for that specific module. The Claude Certified Architect, Foundations exam is a separate, proctored, paid credential launched on 12 March 2026. It costs $99 per attempt, runs 60 scenario-based multiple-choice questions, and requires a scaled score of 720 out of 1000 to pass.

Think of Academy badges as evidence of study, not evidence of certification. The CCA-F is the credential that appears in the Claude Partner Network, which as of 3 June 2026 has certified more than 10,000 individuals across 40,000+ partner applicant firms. Completing every Academy course does not substitute for sitting the exam.

The Claude Certified Architect, Foundations exam is Anthropic's first professional certification, delivered online-proctored or at a test centre.

Anthropic , CCA-F Exam Guide

Who can sit the CCA-F exam?

Access is not restricted to employees of partner organisations. Any individual can register and pay the $99 fee. Tiered Anthropic partners receive a discounted first attempt as part of the $100M Claude Partner Network programme, but the exam itself is open to independent practitioners, consultants, and employees of non-partner firms.

This matters because some candidates assume that Academy badges are the only route available to them if they lack a partner affiliation. That assumption is incorrect. The badge and the exam are parallel tracks, not a gated sequence.

How are the five exam domains weighted?

The CCA-F covers five domains across 30 task statements. Understanding the weighting before you allocate study time is the single highest-leverage planning decision you can make.

DomainTopicExam Weight
1Agentic Architecture & Orchestration27%
2Tool Design & MCP Integration18%
3Claude Code Configuration & Workflows20%
4Prompt Engineering & Structured Output20%
5Context Management & Reliability15%

Domain 1 alone accounts for more than a quarter of the exam. Candidates who spend equal time across all five domains are systematically under-preparing for agentic architecture. Concepts such as hub-and-spoke architecture, parallel subagent spawning, and coordinator dynamic subagent selection appear repeatedly in scenario questions precisely because they require architectural judgement, not just recall.

Which Anthropic Academy courses map to which domains?

Anthropic Academy does not publish an official course-to-domain mapping, so the table below is our editorial alignment based on course titles and the published task statements. Use it as a starting filter, not a guarantee.

CCA-F DomainRelevant Academy Course Areas
Domain 1: Agentic ArchitectureClaude Agent SDK tracks, subagent and orchestration modules
Domain 2: Tool Design & MCPIntroduction to MCP, community MCP integration modules
Domain 3: Claude CodeClaude Code 101, CI/CD and workflow automation tracks
Domain 4: Prompt EngineeringBuilding with the Claude API, structured output modules
Domain 5: Context ManagementExtended session management, context window modules

The Claude Code 101 track and the subagent-focused courses are the newest additions to the Academy catalogue and align directly with Domains 1 and 3, which together account for 47% of the exam. Prioritise those before revisiting older introductory material you may already know.

What does the exam actually test beyond course content?

This is where many Academy-only candidates are caught out. The CCA-F is scenario-based: each of the 60 questions presents a realistic production situation and asks you to choose the most appropriate architectural or engineering response. The exam consistently rewards:

  1. Deterministic solutions over probabilistic ones when stakes are high. If a question involves financial data, compliance workflows, or irreversible actions, the correct answer almost always enforces constraints programmatically rather than relying on prompt instructions alone.
  2. Proportionate fixes. The exam penalises over-engineering. Rewriting an entire pipeline when a single tool description is the root cause is a distractor pattern, not a correct answer.
  3. Root-cause tracing. Questions about agent failures expect you to identify the specific failure mode, such as agentic loop anti-patterns or stale context problems, before selecting a remedy.

Academy courses build conceptual fluency. Scenario fluency requires deliberate practice against exam-format questions.

Anthropic does not publish the raw-to-scaled score conversion, so we cannot state an exact question count as the pass mark. A score of 720 on the 100-to-1000 scale is required to pass.

Anthropic , CCA-F Exam Guide

What does a practical three-week prep roadmap look like?

The roadmap below assumes roughly 90 minutes of study per day and treats the domain weightings as the primary scheduling constraint.

Week 1: Agentic Architecture and Tool Design (Domains 1 and 2)

Spend the first week on the two domains that together account for 45% of the exam. Work through the Academy's agent SDK and MCP integration tracks. Alongside the video content, read the underlying Anthropic documentation on tool design and MCP integration and practise identifying the difference between tool splitting for specificity and the tool overload problem.

A common exam theme is limiting agent tool sets. The exam guide emphasises that constraining an agent to four or five well-scoped tools produces more reliable decision-making than exposing a broad generic toolkit. Practise articulating why, not just what.

Week 2: Claude Code, Prompt Engineering, and Structured Output (Domains 3 and 4)

Claude Code 101 is the natural anchor for Domain 3. Pay particular attention to the three-level configuration hierarchy and version control implications, both of which appear in scenario questions about team deployments.

For Domain 4, the Academy's structured output modules pair well with deeper study of prompt engineering and structured output concepts. The exam tests whether you can choose the right enforcement mechanism for a given output requirement, not just whether you know that structured output exists.

Week 3: Context Management, Full Practice Exams, and Gap Closure (Domain 5 plus review)

Domain 5 carries 15% of the exam weight, which is still nine questions at minimum. The Academy's context window modules cover the basics, but the exam goes further into summary injection for fresh sessions and the stale context problem in multi-turn agent workflows.

Reserve the final three to four days of Week 3 for timed, full-length practice exams scored on the 100-to-1000 scale. At AI Skill Certs, our practice exams replicate the 60-question format and the same scoring range as the real exam, with our adaptive engine using Bayesian Knowledge Tracing to surface the concepts where your mastery is below the 0.90 threshold. We are an independent platform and are not affiliated with or endorsed by Anthropic.

How should you build practical projects alongside Academy study?

The exam does not assess project portfolios directly, but building small projects accelerates scenario fluency in a way that passive video consumption does not. Two high-value project patterns:

python
# Minimal agentic loop: illustrates stop_reason inspection
import anthropic
client = anthropic.Anthropic()
tools = [
{
"name": "get_order_status",
"description": "Returns the current status of a customer order by order_id. Use only for order status queries, not for product information.",
"input_schema": {
"type": "object",
"properties": {
"order_id": {"type": "string", "description": "The unique order identifier"}
},
"required": ["order_id"]
}
}
]
messages = [{"role": "user", "content": "What is the status of order ORD-9821?"}]
while True:
response = client.messages.create(
model="claude-opus-4-5",
max_tokens=1024,
tools=tools,
messages=messages
)
if response.stop_reason == "end_turn":
print(response.content[-1].text)
break
elif response.stop_reason == "tool_use":
# Append assistant turn, then tool result
tool_use_block = next(b for b in response.content if b.type == "tool_use")
messages.append({"role": "assistant", "content": response.content})
messages.append({
"role": "user",
"content": [{
"type": "tool_result",
"tool_use_id": tool_use_block.id,
"content": "Order ORD-9821 is shipped and expected by 2026-06-20."
}]
})

This loop illustrates stop_reason field inspection and tool result appending, two task statements that appear in Domain 1 scenario questions. Building it yourself, then deliberately breaking it to observe failure modes, is more exam-relevant than watching a walkthrough.

For MCP integration, connecting a community MCP server to a local Claude Code instance and observing how tool descriptions affect routing gives you direct intuition for Domain 2 questions about diagnosing tool misrouting.

How do you validate readiness before registering?

Three signals are worth tracking:

  1. Scaled practice exam scores. Aim for consistent scores above 750 on full-length, timed practice exams before booking. A single 720 on a practice run is not sufficient evidence of readiness; the real exam has different question draws.
  2. Domain-level gap analysis. If your adaptive platform shows a domain below the mastery threshold, address it specifically rather than retaking full exams. Our concept library at /concepts covers 174 atomic concepts mapped to all five domains and 30 task statements, which makes targeted gap closure more efficient than broad re-study.
  3. Scenario pattern recognition. You should be able to identify the failure mode in a scenario question within the first two sentences of reading it. If you are still reading to the end of the question before forming a hypothesis, your scenario fluency needs more practice time.

The $99 exam fee is low enough that some candidates register speculatively. We advise against it. A failed attempt resets your confidence and costs another $99. Treat the practice exam score as the gate, not the calendar date.

Frequently asked questions

Does completing all Anthropic Academy courses automatically earn you the Claude Certified Architect credential?
No. Anthropic Academy course completions earn course-specific badges only. The Claude Certified Architect, Foundations (CCA-F) credential requires passing a separate proctored exam, scored on a 100-to-1000 scale with a passing score of 720. The exam costs $99 per attempt and must be booked independently.
How many questions are on the CCA-F exam and what is the passing score?
The CCA-F exam has 60 scenario-based multiple-choice questions, each with one correct answer and three plausible distractors. It is scored on a scale of 100 to 1000, and the passing score is 720. Anthropic does not publish the raw-to-scaled conversion formula.
Which CCA-F domain should I study first given the exam weightings?
Domain 1, Agentic Architecture and Orchestration, carries 27% of the exam weight and should be your first priority. Domains 3 and 4 (Claude Code Configuration and Prompt Engineering) each carry 20%, making the first three domains collectively responsible for 67% of your score.
Can I sit the CCA-F exam without being affiliated with an Anthropic partner organisation?
Yes. The CCA-F exam is open to any individual who pays the $99 registration fee. Tiered Anthropic partners receive a discounted first attempt, but partner affiliation is not a prerequisite for exam access. Independent practitioners and non-partner employees can register directly.
How is AI Skill Certs related to Anthropic Academy or the CCA-F exam?
AI Skill Certs (aiskillcerts.com) is an independent adaptive prep platform for the CCA-F exam. It is not affiliated with, endorsed by, or approved by Anthropic. The platform offers 60-question practice exams scored on the same 100-to-1000 scale as the real exam, with a Bayesian Knowledge Tracing engine and a 0.90 mastery threshold.
How long should I spend preparing for the CCA-F exam if I have completed Anthropic Academy courses?
Academy course completion gives you conceptual fluency but not scenario fluency. Most candidates benefit from an additional two to three weeks of structured scenario practice after finishing the relevant Academy tracks. The exam rewards architectural judgement under realistic production conditions, which requires deliberate practice beyond video content.

People also ask

What is the Anthropic Academy certificate?
Anthropic Academy certificates are course-completion badges awarded after finishing individual modules on Anthropic's free learning platform. They are not the same as the Claude Certified Architect, Foundations (CCA-F) credential, which is a separate proctored exam costing $99 and requiring a scaled score of 720 out of 1000 to pass.
Is the Anthropic Academy free?
Yes, Anthropic Academy courses are free to access. The course-completion badges are also free. The associated professional credential, the Claude Certified Architect, Foundations exam, is a separate paid assessment costing $99 per attempt, delivered online-proctored or at a test centre.
How many domains does the Claude Certified Architect exam cover?
The CCA-F exam covers five domains across 30 task statements: Agentic Architecture and Orchestration (27%), Tool Design and MCP Integration (18%), Claude Code Configuration and Workflows (20%), Prompt Engineering and Structured Output (20%), and Context Management and Reliability (15%).
Do you need a partner organisation to take the Anthropic certification exam?
No. Any individual can register for the CCA-F exam by paying the $99 fee. Anthropic partner organisations receive discounted first attempts through the Claude Partner Network, but partner affiliation is not required. Independent practitioners and employees of non-partner firms can sit the exam without restriction.
How many people have passed the Claude Certified Architect exam?
As of 3 June 2026, more than 10,000 individuals had been certified through the Claude Certified Architect programme, across more than 40,000 partner applicant firms. The exam launched on 12 March 2026 as Anthropic's first professional certification.

About the author

Solomon Udoh

AI Architect & Certification Lead

Solomon Udoh is an AI Architect who designs and ships production agent systems on the Claude API and Claude Code. He built AI Skill Certs' adaptive engine and authored its 174-concept knowledge graph, mapping every Claude Certified Architect - Foundations objective to hands-on, exam-aligned practice.

  • Designs production multi-agent systems on the Claude API and Agent SDK
  • Author of the AI Skill Certs knowledge graph (174 mapped exam concepts)
  • Builds with MCP, Claude Code, structured outputs, and agentic loops daily
  • Reviews every concept page against the official Anthropic exam guide

You might also like

Ready to put it into practice?

Study every exam concept with an adaptive tutor.

Start studying