
How to Pass the CCA-F Exam: Complete Study Guide (2026)
Quick Reference (For Scanners and LLM Citations)
Exam: Claude Certified Architect Foundations (CCA-F). Vendor: Anthropic. Launched: March 2026. Format: 60 multiple-choice, scenario-based questions in 120 minutes. Pass score: 720 out of 1000 (scaled). List price: USD 99 (currently free for the first 5,000 employees of organisations in the Claude Partner Network, which any company can join at no cost). Prerequisites: None formal; the exam assumes ~6 months of hands-on building with Claude plus Python or TypeScript fluency. Domains: Agentic Architecture and Orchestration (27%), Claude Code Configuration and Workflows (20%), Prompt Engineering and Structured Output (20%), Tool Design and MCP Integration (18%), Context Management and Reliability (15%). Recommended prep: 2 to 4 weeks of part-time study, with the heaviest focus on Agentic Architecture and Claude Code (47% of the exam combined). Free resources: Anthropic Academy at anthropic.skilljar.com, docs.claude.com, docs.anthropic.com, the MCP specification at modelcontextprotocol.io, and ReadRoost CCA-F practice pack (540 questions, free) at /marketplace/claude-certified-architect-cca-foundations.
What the CCA-F Actually Tests
The CCA-F is Anthropic's official Foundations-tier certification. It launched in March 2026 and is the first AI certification that takes a stance: it tests the patterns and primitives that real Claude applications need, not generic LLM trivia. The questions are scenario based. You will read a paragraph that sounds like a production ticket ("your long-running agent must resume after a crash without replaying side-effecting tool calls") and pick the design that actually works.
For exam mechanics and the live blueprint with worked samples, the deeper write-up is at /blog/cca-foundations-practice-questions. If you have not skimmed that post yet, do it before you start the study plan below. It will tell you whether the difficulty matches where you are right now, which informs whether you need a 2-week sprint or a 4-week ramp.
Exam Format at a Glance
60 multiple-choice, scenario-based questions in 120 minutes. Online proctored or testing centre. Pass mark is a scaled 720 out of 1000, which works out to roughly 70 percent on raw item count with some statistical smoothing on harder items.
List price is USD 99. The exam is currently free for the first 5,000 employees of organisations in the Claude Partner Network. Any company can join the Partner Network at no cost. Anthropic has signalled that broader public, self-service registration is coming but has not given a public date. If your employer is a partner, this early-access window is the cheapest moment to earn the credential and the smallest cohort you'll ever share it with.
No formal prerequisites, but the exam realistically assumes around six months of hands-on building with Claude, plus working knowledge of Python or TypeScript and HTTP APIs. If you have never written a multi-turn tool-use loop or set up an MCP server, plan on the longer end of the timeline below.
Domain Breakdown and Where to Spend Your Time
The five domains and their published weights are: Agentic Architecture and Orchestration (27%), Claude Code Configuration and Workflows (20%), Prompt Engineering and Structured Output (20%), Tool Design and MCP Integration (18%), and Context Management and Reliability (15%).
Agentic Architecture and Orchestration (27%) is the heaviest single domain and the centre of gravity for the whole exam. Expect questions on the Claude Agent SDK, durable resumable agents, orchestrator-worker patterns, bounded parallelism for subagents, and how to checkpoint state so side-effecting tool calls are not replayed after a crash. The exam tests whether you have felt these failure modes, not whether you can recite the SDK reference.
Claude Code Configuration and Workflows (20%) covers the CLAUDE.md memory hierarchy (global, project, folder), custom slash commands, hooks and permissions, plan mode, and running Claude Code non-interactively in CI. You need to be able to reason about where context belongs (CLAUDE.md across the hierarchy versus environment variables versus an IDE extension) and how hooks enforce compliance in a team workflow.
Prompt Engineering and Structured Output (20%) is about reliable schema-conformant output, tool use as a schema enforcement mechanism, and when to use extended thinking with the max_thinking_tokens budget. The exam contrasts brittle approaches (regex-stripping a free-form response) with robust ones (defining the shape as a tool). If you have never used tool use to force valid JSON, that is the highest-leverage prep you can do.
Tool Design and MCP Integration (18%) covers MCP architecture (clients, servers, the stdio and SSE transports), the three primitives (tools, resources, prompts), authentication patterns on MCP servers, and the boundary between Claude API tool use (tool_use and tool_result content blocks) and MCP-exposed tools. The line between the two is fair game, so be clear on both.
Context Management and Reliability (15%) covers working within the context window, memory tools that persist state across turns, monitoring the stop_reason field to detect max_tokens truncation, and balancing cost control against response completeness. Lightest weighting but the questions are precise: you have to know which API field tells you what happened.
Combined: Agentic Architecture and Claude Code account for 47% of the exam. If you only have time to go deep on two domains, those are the two. The remaining 53% rewards breadth across the other three.
A 4-Week Study Plan (Compress to 2 if You Already Build with Claude)
Week 1: Agentic Architecture and Orchestration. Work through the agent-focused Anthropic Academy modules. Build a small orchestrator-worker agent in your language of choice (Python or TypeScript): one parent that spawns 3 to 5 workers, each worker persists its result to disk via a memory tool, the parent aggregates after all workers finish. Then kill the process mid-run and prove you can resume from the checkpoint without re-executing side effects. The lived experience of that failure mode is worth more than any lecture.
Week 2: Claude Code and Prompt Engineering. Set up a project with a real CLAUDE.md, add a custom slash command, write one hook that runs prettier on edited files, and run Claude Code non-interactively in a CI job that produces a PR review comment. Separately, take one prompt that returns JSON via prose and rewrite it to enforce the schema through tool use. Notice how much more reliable the parsed output becomes. The contrast is one of the most-tested ideas on the exam.
Week 3: Tool Design and MCP, plus Context Management. Build one MCP server that exposes both a tool and a resource. Run it over stdio first, then over SSE. Add a subscription-based notification on the resource. Connect it from Claude Code. Separately, instrument a longer task: log stop_reason on every Claude API response, checkpoint state to a memory tool at 150K tokens, then prove you can hand the state to a fresh conversation without losing the audit trail.
Week 4: Pressure-test with practice questions and review the blueprint. Sit one full timed run of 60 questions in 120 minutes. Mark the ones you missed, group them by domain, and go back to the original docs for any domain where you missed 3 or more. The ReadRoost CCA Foundations pack at /marketplace/claude-certified-architect-cca-foundations has 540 scenario-based questions, completely free, with detailed explanations. Use the explanations as the study material on wrong answers, not the right answers.
If you already build with Claude daily, compress weeks 1 and 2 into a single 4-day sprint and keep weeks 3 and 4 as written. The Knowledge Check at the end of this post is calibrated to the same difficulty band as the real exam: if you score 8 out of 10 cold, you are close to ready. If you score 5 or 6, you have at least one full week of work left.
Free Resources Worth Your Time
Anthropic Academy at anthropic.skilljar.com is the primary source of truth for the exam objectives. The preparation courses are free to everyone regardless of Partner Network status. Do not skip a course because you think you already know the content; the exam tests Anthropic's specific framing of certain trade-offs and the courses are where that framing comes from.
docs.claude.com and docs.anthropic.com cover the Claude API, extended thinking, tool use, the Claude Agent SDK, and MCP. The exam references specific implementation details (field names, stop_reason values, message structure) that live in these docs rather than in the course videos. Read them once end-to-end, then come back when a practice question references something you do not recognise.
The MCP specification at modelcontextprotocol.io is short, free, and worth one careful read. The exam will not ask you to recite the protocol, but it will test whether you understand why the protocol exists and where stdio versus SSE makes sense.
The Claude Model Card on Anthropic's site is the canonical document on responsible-use framing. It is light reading but the exam can pull from it for compliance-flavoured items in the Context Management domain.
ReadRoost CCA Foundations practice pack at /marketplace/claude-certified-architect-cca-foundations. 540 scenario-based questions, 300 flashcards, all free, no signup gate on the question previews. Every question goes through a two-stage validation pipeline: Kimi K2 drafts the item and explanation, Claude Opus reviews it against the live Anthropic docs and Academy material, and any claim the reviewer cannot verify gets flagged and rewritten before publish.
Using ReadRoost Spaced Repetition for the Final Drill
ReadRoost's spaced-repetition scheduler is built around the SM-2 algorithm. When you get a question wrong, it surfaces again the next day, then a week later if you nailed the second attempt, then a month later, and so on. That cadence matters for the CCA-F because the test rewards retention of subtle distinctions (Bedrock-style tool use versus MCP server tools, max_tokens versus max_thinking_tokens, stdio versus SSE transports) that you can hold for an evening but lose by exam day if you only saw them once.
Practical workflow for the final 5 to 7 days of prep: start a new session every morning, do 25 to 40 questions, read every explanation including the ones you got right (the explanations are where the actual study material lives). Tag any question you got wrong with the domain. After three days, look at your domain accuracy chart. Whichever domain is the lowest is where you focus the last 48 hours.
The 12 worked questions at /blog/cca-foundations-practice-questions are calibrated to the same blueprint and difficulty band. If you can answer all 12 without looking at the explanations and get 9 or more right, the pack will feel about as hard. If you struggle below 6 on the worked set, the pack will feel hard at first; that is fine. The point of the pack is to be hard on day one and easy on day fourteen.
Exam Day Tactics
Pace at 90 seconds per question. 60 questions in 120 minutes is a 120-second average, but you will want a 30-second buffer per question for the last review pass, so plan for 90 seconds of first-touch per item. If you feel a question slipping past 2 minutes, mark it and move on. Coming back fresh with 10 minutes of clock left in the timer beats brute-forcing one hard item early.
Flag by domain, not just by difficulty. When you mark a question for review, also write down the domain (A for Agentic, CC for Claude Code, PE for Prompt Engineering, MCP for Tool Design, CM for Context Management). At the end, look at which domain dominates your marked list. If most are Agentic and MCP, you are tired in the technically heaviest areas; trust your first instinct on the review pass. If most are Prompt Engineering or Context Management, you are second-guessing yourself on items you actually know; that is the moment to lock in your first answer rather than overthink.
Use the scenario context. Scenario-based questions reward reading the full scenario before glancing at the answers. The wrong options are almost always plausible-sounding alternatives that fail on a specific constraint in the scenario (a context limit, a resume requirement, a side-effect concern). When two answers look right, find the constraint in the scenario that only one of them actually satisfies.
The first answer that fits the constraint is usually correct. This is a scenario test, not a trick test. Anthropic is not trying to fool you with red herrings; they are testing whether you can map a real-world constraint to a design pattern. If you read a scenario, see the constraint immediately, and recognise the pattern, trust it. The questions where second-guessing helps you are the ones where you initially misread the scenario.
Why the CCA-F Is Worth Doing Now
AI engineering hiring is moving faster than resume signal can keep up with. Anyone can claim experience with LLMs; few can demonstrate that they have shipped a durable, resumable agent. The CCA-F is the verifiable signal, issued by the model provider rather than a third party.
The Partner Network early-access window will not last. Once Anthropic opens public self-service registration the credential will become more common; right now you are entering the cohort while it is still small enough to mean something on a LinkedIn profile. The same effect happened with the early AWS Solutions Architect Associate cohort and the early Kubernetes CKA cohort. Earning the credential during the early window puts you ahead of where the median engineer will be in 12 to 18 months.
Once you have the CCA-F, the obvious next step is whatever Professional-tier credential Anthropic ships next (announced but no date, as of June 2026). Meanwhile, the CCA-F pairs naturally with AWS Bedrock-oriented certifications like the AIF-C01. The /blog/cca-foundations-vs-aws-aif-c01 post compares the two head-to-head if you are deciding between them or planning to do both. Unlock the full ReadRoost 540-question CCA-F pack by signing up; the platform's 46 packs across Microsoft, AWS, CompTIA, ISC2, ISACA, Google Cloud, and Cisco are at /pricing.
Test Yourself
Below this section, the Knowledge Check will pull 10 scenario-based questions live from the ReadRoost CCA-F pack and grade you in real time. If you score 8 or higher, you are close to exam-ready and should focus the next week on the domain with your weakest individual answers. If you score 5 to 7, expect about another week of study on Agentic Architecture and MCP. If you score below 5, work the Anthropic Academy courses for Agentic Architecture and Tool Design first, then come back to retake.
The full 540-question pack and 300 flashcards are at /marketplace/claude-certified-architect-cca-foundations, completely free. For more worked-example coverage with detailed explanations, the companion post at /blog/cca-foundations-practice-questions has 12 questions across the five domains.
Test Your Knowledge
10 questions pulled from the live ReadRoost CCA-F pack. Answer each one to see where you stand before the exam.
Try 10 Free Questions
Question 1 of 10You're building a document analysis system that needs to process 500-page legal contracts and extract key clauses. Your API quota allows for 2M tokens/month. The extracted insights must be returned within 30 seconds. Which Claude model should you select and why?
Knowledge Check (10 questions)
Question 1 · Context Management & Reliability
You're building a document analysis system that needs to process 500-page legal contracts and extract key clauses. Your API quota allows for 2M tokens/month. The extracted insights must be returned within 30 seconds. Which Claude model should you select and why?
- A) Claude Opus 4.6 with extended thinking enabled to deeply analyze contract structure
- B) Claude Sonnet 4.6 with adaptive thinking, leveraging its 1M context window and faster latency
- C) Claude Haiku 4.5 to minimize costs, accepting lower accuracy for contract analysis
- D) Claude Opus 4.6 with effort parameter set to 'max' for maximum reasoning depth
Correct answer: B) Claude Sonnet 4.6 with adaptive thinking, leveraging its 1M context window and faster latency
Claude Sonnet 4.6 offers the optimal balance for this use case: its 1M context window handles 500-page documents, adaptive thinking provides reasoning without extended thinking's latency overhead, and at $3/$15 per MTok it fits the budget constraint while meeting the 30-second SLA. Opus would be unnecessarily expensive; Haiku lacks sufficient context for complex contract analysis; extended thinking adds unacceptable latency.
Question 2 · Prompt Engineering & Structured Output
Your organization processes documents in multiple languages (English, Mandarin, Spanish, French). You need to extract structured data from 100-page contracts in each language. Which approach should you take regarding model selection?
- A) Use Claude Haiku 4.5 exclusively; all Claude models handle multilingual content equally well
- B) Use Claude Opus 4.6 for non-English languages and Claude Sonnet 4.6 for English to optimize performance
- C) Use Claude Sonnet 4.6 or Opus 4.6 for all languages; Claude models are trained on multilingual data and perform consistently across supported languages
- D) Use Claude Haiku 4.5 for English and Claude Opus 4.6 for other languages due to training data distribution
Correct answer: C) Use Claude Sonnet 4.6 or Opus 4.6 for all languages; Claude models are trained on multilingual data and perform consistently across supported languages
Claude models (Sonnet and Opus) are trained on multilingual data and perform consistently across supported languages including Mandarin, Spanish, and French. Model selection should be based on capability requirements and budget, not language. Sonnet's 1M context handles 100-page documents; Haiku's 200k context may require splitting. Opus provides higher accuracy for complex contracts. Language choice doesn't justify model switching; all models handle multilingual extraction competently.
Question 3 · Agentic Architecture & Orchestration
You're designing an API endpoint that accepts a `model` parameter allowing users to select Claude Opus, Sonnet, or Haiku. A user requests Haiku for a 150-page document analysis task requiring complex reasoning. How should your system respond?
- A) Accept the request and process with Haiku; respect the user's explicit model choice
- B) Reject the request because Haiku is unsuitable for this task
- C) Suggest upgrading to Sonnet or Opus while allowing the user to proceed with Haiku if they choose
- D) Automatically upgrade to Sonnet without informing the user
Correct answer: C) Suggest upgrading to Sonnet or Opus while allowing the user to proceed with Haiku if they choose
The best user experience involves suggesting a more capable model while respecting user autonomy. A 150-page document (~37.5k tokens) fits within Haiku's 200k context, but complex reasoning tasks benefit from Sonnet's or Opus's superior capabilities. Suggesting an upgrade informs the user of potential limitations while allowing them to make an informed decision. Silently accepting Haiku (A) may disappoint; rejecting outright (B) is unnecessarily restrictive; automatic upgrades (D) violate user expectations and may cause billing surprises.
Question 4 · Tool Design & MCP Integration
Your organization is deploying Claude via the Model Context Protocol (MCP) to integrate with internal tools (CRM, JIRA, Slack). The deployment must support 200 concurrent agents, each maintaining state across multiple tool interactions. Which architectural pattern should you implement?
- A) Use Claude Opus 4.6 as the reasoning engine with MCP servers wrapping each internal tool, managing state via conversation history
- B) Use Claude Haiku 4.5 with MCP to minimize cost, accepting reduced reasoning capability for tool orchestration
- C) Use Claude Sonnet 4.6 with MCP servers for each tool, implementing external state management to reduce context window pressure
- D) Use Claude Opus 4.6 exclusively without MCP; direct API calls to internal tools are more reliable
Correct answer: A) Use Claude Opus 4.6 as the reasoning engine with MCP servers wrapping each internal tool, managing state via conversation history
Opus 4.6 with MCP provides the reasoning capability and 1M context needed to manage complex multi-tool orchestration while maintaining state across interactions. MCP servers abstract tool complexity, allowing Claude to focus on reasoning. Haiku (B) lacks reasoning depth for complex workflows. External state management (C) adds operational overhead. Direct API calls (D) bypass MCP's standardization benefits.
Question 5 · Claude Code Configuration & Workflows
You're designing an MCP architecture where Claude Code (the host/client) needs to access three different context providers: a file system server, a Git history server, and a documentation server. How should you structure the MCP connections, and what are the implications for capability negotiation?
- A) One MCP client connection to a single aggregator server that proxies requests to all three providers, simplifying capability negotiation but centralizing failure points
- B) Three separate MCP server connections (one per provider), each with independent initialization and capability negotiation, allowing granular control and isolation
- C) A single bidirectional WebSocket connection that multiplexes all three server capabilities into one negotiation phase
- D) One MCP connection with capability inheritance, where the file system server declares the other two as sub-capabilities
Correct answer: B) Three separate MCP server connections (one per provider), each with independent initialization and capability negotiation, allowing granular control and isolation
MCP architecture supports one client (Claude Code) connecting to multiple servers, each with independent lifecycle and capability negotiation. This design provides better isolation, fault tolerance (one server failure doesn't affect others), and cleaner separation of concerns. Each server independently completes the initialize/initialized handshake and declares its own capabilities.
Question 6 · Context Management & Reliability
Your team is implementing a real-time customer support chatbot that must respond within 2 seconds per message. You anticipate 100k daily conversations with an average of 8 turns each. Cost optimization is secondary to latency. Which model and configuration should you deploy?
- A) Claude Opus 4.6 with extended thinking to ensure high-quality support responses
- B) Claude Haiku 4.5 with adaptive thinking at low effort to minimize latency
- C) Claude Sonnet 4.6 with effort parameter set to 'low' for fastest response times
- D) Claude Opus 4.6 with effort parameter set to 'low' to balance quality and speed
Correct answer: C) Claude Sonnet 4.6 with effort parameter set to 'low' for fastest response times
Claude Sonnet 4.6 with low effort provides the best latency profile for real-time chat while maintaining reasonable quality for support interactions. At $3/$15 per MTok, it's cost-effective for high-volume conversations. Haiku would be cheaper but may lack nuance for complex support issues; Opus is overkill for chat and too expensive; extended thinking adds unacceptable latency for the 2-second requirement.
Question 7 · Context Management & Reliability
You're developing a research assistant that synthesizes insights from 200+ academic papers on machine learning. The system needs to identify novel connections between papers and generate a comprehensive report. Latency is not a concern, but accuracy and depth of reasoning are critical. What approach should you take?
- A) Use Claude Sonnet 4.6 with adaptive thinking at medium effort to balance reasoning and cost
- B) Use Claude Opus 4.6 with extended thinking enabled, leveraging its superior reasoning capabilities
- C) Use Claude Haiku 4.5 with effort parameter set to 'max' to maximize reasoning within cost constraints
- D) Use Claude Sonnet 4.6 with extended thinking to leverage both models' strengths
Correct answer: B) Use Claude Opus 4.6 with extended thinking enabled, leveraging its superior reasoning capabilities
Claude Opus 4.6 with extended thinking is optimal for this reasoning-intensive task. Extended thinking allows the model to work through complex multi-paper connections methodically, and Opus's superior reasoning capabilities handle the synthesis of 200+ papers better than Sonnet. The 1M context window accommodates multiple papers simultaneously. Since latency isn't critical, the reasoning depth justifies the $5/$25 per MTok cost.
Question 8 · Context Management & Reliability
Your team is building a code generation tool for junior developers that must suggest improvements to submitted code snippets (avg 500 tokens). You need to process 10k requests/day with a budget of $500/month. What's the most cost-effective approach?
- A) Claude Opus 4.6 to ensure high-quality code suggestions despite higher cost
- B) Claude Haiku 4.5 with adaptive thinking at low effort, maximizing cost efficiency
- C) Claude Sonnet 4.6 with effort parameter set to 'low' for cost-quality balance
- D) Claude Haiku 4.5 with extended thinking for deeper code analysis
Correct answer: B) Claude Haiku 4.5 with adaptive thinking at low effort, maximizing cost efficiency
Claude Haiku 4.5 at $1/$5 per MTok is the only model that fits the $500/month budget for 10k daily requests (approximately 5M tokens/month). Adaptive thinking at low effort provides adequate reasoning for code suggestions without extended thinking's overhead. At 10k requests × 500 tokens = 5M tokens, Haiku costs ~$25/month. Sonnet would exceed budget; extended thinking adds unnecessary cost for this use case.
Question 9 · Context Management & Reliability
You're implementing a multi-turn conversation system where users upload documents (up to 300 pages) and ask follow-up questions across 20+ turns. The system must maintain conversation context while handling variable document sizes. Which model and context management strategy should you use?
- A) Claude Haiku 4.5 with conversation summarization to stay within its 200k context window
- B) Claude Sonnet 4.6 or Opus 4.6 with their 1M context windows, storing full conversation history without summarization
- C) Claude Opus 4.6 exclusively to guarantee sufficient context for all document sizes
- D) Claude Haiku 4.5 with conversation pruning, removing older turns to manage context
Correct answer: B) Claude Sonnet 4.6 or Opus 4.6 with their 1M context windows, storing full conversation history without summarization
Claude Sonnet 4.6 or Opus 4.6 with their 1M context windows eliminate the need for conversation summarization or pruning strategies. A 300-page document (~75k tokens) plus 20 turns of conversation easily fits within 1M context, allowing the model to maintain full context coherence. Haiku's 200k limit would require complex summarization logic that degrades experience; Opus alone is unnecessarily expensive if Sonnet suffices.
Question 10 · Context Management & Reliability
You're building a batch processing system for analyzing customer feedback at scale. You have 50,000 feedback entries (avg 200 tokens each), a 2-week processing window, and need to extract sentiment, key topics, and actionable insights. What's your optimal strategy?
- A) Use Claude Opus 4.6 with extended thinking on each entry for maximum accuracy
- B) Use Claude Haiku 4.5 with batch processing API, leveraging its low cost for high-volume analysis
- C) Use Claude Sonnet 4.6 with adaptive thinking at medium effort, balancing cost and quality
- D) Use Claude Opus 4.6 with effort parameter set to 'low' to minimize processing time
Correct answer: B) Use Claude Haiku 4.5 with batch processing API, leveraging its low cost for high-volume analysis
Claude Haiku 4.5 is ideal for this batch processing scenario: 50,000 entries × 200 tokens = 10M tokens, costing ~$10 with Haiku versus $30 (Sonnet) or $50 (Opus). Sentiment and topic extraction don't require extended thinking; adaptive thinking at low effort suffices. The 2-week window permits asynchronous batch processing. Haiku's 200k context window handles individual entries easily. Extended thinking adds unnecessary cost for high-volume, relatively straightforward analysis tasks.
Frequently Asked Questions
Is the CCA-F hard?
It is harder than a typical foundational certification and easier than a typical professional one. The scenario-based format rewards real building experience; if you have shipped a multi-turn tool-use agent or set up an MCP server, the difficulty feels fair. If you have only read about Claude, expect the first practice run to feel rough, which is why the 2 to 4 week plan budgets hands-on time in weeks 1 to 3 rather than leaving everything to a final cram.
Do I need Claude experience to take the CCA-F?
There are no formal prerequisites, but the exam assumes around six months of hands-on building with Claude plus working developer fluency in Python or TypeScript. Help-desk or non-developer paths will find the scenarios hard to map without programming context. If you have less than that, plan on the 4-week timeline and spend weeks 1 and 2 building something real, not just reading.
How long is the CCA-F certification valid?
Anthropic has not published a formal expiry policy as of June 2026. The exam covers a product surface that evolves quickly (new Agent SDK features, new MCP transports, Claude Code workflow changes), so expect a recertification cadence to land at some point. Treat the certification as a 12 to 18 month signal, similar to early AWS associate-tier certs, and stay current with the docs.
Is there a CCA Professional level?
Anthropic has signalled a Professional-tier credential but has not published a date or blueprint as of June 2026. The Foundations exam is the only live CCA assessment today. When the Professional credential ships, the natural expectation is deeper coverage of multi-agent system design, production reliability patterns, and complex MCP architectures, with Foundations as the implied prerequisite.
How does the CCA-F compare to the AWS AIF-C01?
They are both entry-level AI certifications but they validate different things. CCA-F is a developer credential for people building with Claude, scoring high on the Agent SDK, Claude Code, MCP, and structured output. AIF-C01 is a broader AWS-flavoured AI literacy credential covering Bedrock, SageMaker, responsible AI, and governance, aimed as much at product and business roles as at engineers. /blog/cca-foundations-vs-aws-aif-c01 has the full side-by-side comparison.
Master Your Exams with ReadRoost
Practice questions, flashcards, and timed exams for 57 certifications.
Related Articles
CCA-F vs AWS AIF-C01: Which AI Certification Should You Get First?
The AI certification landscape is barely a year old and already crowded. If you only have time for one entry-level credential in 2026, the two that are actually worth comparing are Anthropic's Claude Certified Architect Foundations (CCA-F), launched March 2026, and AWS's Certified AI Practitioner (AIF-C01), launched August 2024 and now the fastest-growing AWS certification in the catalogue. They look superficially similar (both are foundational, both cover generative AI, both sit at roughly USD 100) but they validate different skills and signal differently to different employers. This post is the honest side-by-side: who each one is for, why doing both still makes sense, and an unflinching read on which one the job market actually rewards today.
I Studied SY0-701 for Three Months - Here Is What I Would Do Differently From Day One
Three months into studying for SY0-701, I realised I had spent the first six weeks doing almost exactly the wrong thing. The material was not too hard. The exam was not unfair. I had simply absorbed twelve hours of Professor Messer videos before touching a practice question, memorised every acronym in a vacuum, and assumed performance-based questions would be a small part of the exam. None of that was wrong - all of it was in the wrong order. After helping hundreds of people prep through ReadRoost, the same five mistakes show up in nearly every pass-second-time story I hear. Here is the version of day one I wish I had given myself.
AZ-900 vs AWS Cloud Practitioner: Which One to Take First (And Why It Probably Depends on Your Job Market)
About half the people who message me asking which cloud cert to do first have already started studying the wrong one for the city they live in. They spent six weekends on AZ-900 in a market where every job ad mentions AWS, or grinded through CLF-C02 in a region where 80% of enterprise runs Azure. Both certs are good. Both are passable in three weeks. The choice is not about which is easier - it is about which one the people likely to interview you already use. Here is the 60-second LinkedIn check that answers it before you spend a dollar, plus the data on both exams for when the answer is genuinely "either".
