Exam guide·9 min read·9 July 2026

Claude Academy Login: Access, Courses, and CCA-F Prep

Everything solution architects need to know about the claude academy login process, free courses, and how Anthropic Academy maps to the five CCA-F exam domains.

By Solomon Udoh · AI Architect & Certification Lead

Claude Academy Login: Access, Courses, and CCA-F Prep

Searching for the claude academy login and wondering what you actually get once you are inside? Anthropic Academy is a free learning portal, delivered on the Skilljar platform, that sits inside the Claude Partner Network. Access is open to anyone who joins the Partner Network at no cost. This guide explains how to get in, what the courses cover, and where the Academy ends and the actual CCA-F certification exam begins.

How do you access Anthropic Academy and log in?

Access follows a two-step path. First, apply to the Claude Partner Network on anthropic.com. Membership is free and, as of 3 June 2026, more than 40,000 firms have applied. Once your application is accepted, Anthropic provisions an Academy account on Skilljar and sends a welcome email with a login link. You authenticate with the email address used during Partner Network registration. There is no separate Academy registration form.

If you already have a Partner Network account and cannot find the login link, check your original welcome email or navigate directly to the Anthropic Academy subdomain on Skilljar and use "forgot password" with your Partner Network email. Anthropic does not publish a persistent public URL for the Academy portal in its main documentation, so the welcome email link is the canonical entry point.

What courses does Anthropic Academy offer, and are they free?

All Academy courses are free to enrolled partners. The catalogue covers the full Claude stack, from API fundamentals through agentic system design and the Model Context Protocol. Courses are self-paced video modules with knowledge checks, and Anthropic issues a completion certificate for each finished course. Those certificates are distinct from the CCA-F credential; more on that distinction below.

The table below maps the major course themes to the five CCA-F exam domains and their weightings, per Anthropic's exam guide:

CCA-F DomainWeightMatching Academy Theme
Domain 1: Agentic Architecture & Orchestration27%Multi-agent design, orchestration patterns, subagent coordination
Domain 2: Tool Design & MCP Integration18%MCP server setup, tool description authoring, error handling
Domain 3: Claude Code Configuration & Workflows20%Claude Code CLI, CLAUDE.md, CI/CD integration
Domain 4: Prompt Engineering & Structured Output20%Prompt patterns, XML schemas, few-shot examples
Domain 5: Context Management & Reliability15%Token budgeting, context windows, session strategies

Domain 1 carries the heaviest single weight at 27%, which is why the agentic architecture modules deserve the most study time. Our Agentic Architecture & Orchestration concept library maps every task statement in that domain to atomic practice questions.

What is the difference between an Academy completion certificate and the CCA-F?

This is the question we see most often from candidates who have finished all the Academy modules and assume they are now certified. They are not, and the distinction matters.

An Academy completion certificate confirms that you watched and passed the knowledge checks for a given course. It carries no proctored assessment, no scaled score, and no industry-recognised credential status. It is a learning record, not a professional certification.

The Claude Certified Architect, Foundations (CCA-F) exam is Anthropic's first professional certification, launched 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. The exam is delivered online-proctored or at a test centre. Passing it earns the CCA-F credential, which is the qualification that appears in the Claude Partner Network's certified-individual count (10,000+ as of 3 June 2026).

The Claude Certified Architect, Foundations exam is Anthropic's first professional certification, part of the Claude Partner Network, a $100M programme.

Anthropic , Claude Partner Network announcement

In short: Academy courses prepare you; the CCA-F exam certifies you. Do not skip the exam and assume the certificates are equivalent.

How do the Academy courses map to the hardest CCA-F domains?

The two domains that trip up the most candidates are Domain 1 (Agentic Architecture, 27%) and the pair of Domain 3 and Domain 4 (Claude Code and Prompt Engineering, 20% each). Here is how Academy content aligns with each.

Domain 1: Agentic Architecture (27%)

Academy modules on multi-agent orchestration cover hub-and-spoke topologies, coordinator responsibilities, and subagent spawning. The exam tests these patterns in scenario form: given a broken pipeline, identify the root cause and the proportionate fix. Concepts like hub-and-spoke architecture and parallel subagent spawning are tested directly. The Academy modules give you the vocabulary; you still need to practise applying it under scenario pressure.

Domain 2: Tool Design & MCP Integration (18%)

MCP modules in the Academy walk through server configuration, scoping hierarchy, and the isError flag pattern. The exam rewards candidates who can distinguish an access failure from a valid empty result and who know when to split a tool versus when to rewrite its description. Our Tool Design & MCP Integration concept library covers all 30 task statements in this domain.

Domain 3: Claude Code Configuration (20%)

The Claude Code modules cover the three-level configuration hierarchy (user, project, and repository), CLAUDE.md authoring, and CI/CD integration. The exam consistently rewards deterministic, root-cause solutions over probabilistic ones. If a scenario describes a misconfigured hook or a missing environment variable, the correct answer traces the failure to its source rather than adding a retry wrapper.

Domain 4: Prompt Engineering & Structured Output (20%)

Academy prompt engineering content covers XML tagging, few-shot construction, and schema design. The exam tests whether you can identify why a prompt produces inconsistent output and select the minimum-change fix. Our Prompt Engineering & Structured Output concept library breaks each technique into a decision rule you can apply in under 90 seconds per question.

Do you need hands-on experience before the exam?

Anthropic's guidance for the CCA-F positions it as an architect-level credential. The exam scenarios assume familiarity with the Messages API, tool-use payloads, and agentic loop mechanics. Candidates who have only watched Academy videos without building anything tend to struggle with the scenario-based format because the questions describe real failure modes, not textbook definitions.

A practical minimum is to have built at least one agentic system that touches the Messages API, one MCP server integration, and one structured-output pipeline before sitting the exam. That gives you the pattern-recognition needed to read a scenario and immediately identify whether the failure is a stop_reason field misinterpretation, a tool description conflict, or a context window problem.

You do not need a computer science degree or published research. The exam tests applied architecture judgment, not academic credentials.

How do token economics affect what the exam tests?

Cost and reliability are not separate concerns in the CCA-F; they are the same concern. Several Domain 5 scenarios describe a production system that is either running over budget or producing inconsistent outputs, and the correct answer involves a context management technique rather than a model upgrade.

Key mechanics the exam tests include:

  1. Prompt caching: Anthropic's prompt caching documentation describes how repeated system prompt prefixes can be cached to reduce input token costs. The exam tests when caching applies and when it does not.
  2. Asynchronous message batches: The Message Batches API allows up to 10,000 requests per batch with a 29-day result expiry window, per Anthropic's Batches API documentation. The exam distinguishes scenarios where batch processing is appropriate from those requiring synchronous responses.
  3. Context window management: Scenarios describe agents whose performance degrades over a long session. The correct fix is usually a summary injection for fresh sessions rather than increasing the model tier.

The exam does not ask you to calculate token costs numerically. It asks you to select the architecturally correct response to a cost or reliability symptom.

When should you use Opus versus Sonnet, and does the exam test this?

Model selection appears in Domain 1 and Domain 4 scenarios. The exam's consistent principle is proportionate tool for the task: use a more capable model only when the task genuinely requires it, and prefer deterministic enforcement over probabilistic model judgment for high-stakes decisions.

A common scenario pattern: a coordinator agent is using the most capable model for every subagent call, including trivial data-formatting steps. The correct answer routes formatting tasks to a lighter model and reserves the heavyweight model for reasoning-intensive steps. This is the model-driven vs pre-configured decision-making concept in practice.

The Academy courses introduce model tiers. The exam tests whether you can apply the selection logic under scenario pressure.

When stakes are high, the exam consistently rewards deterministic solutions over probabilistic ones, and proportionate fixes over maximum-capability responses.

Anthropic , CCA-F Exam Guide

How does AI Skill Certs complement Anthropic Academy?

Anthropic Academy provides the conceptual foundation. AI Skill Certs (this platform) provides the scenario-based practice layer that the Academy does not offer.

Our practice exams are 60 questions, scored on the same 100-to-1000 scale as the real exam, with 720 as the passing bar. The adaptive engine uses Bayesian Knowledge Tracing with a 0.90 mastery threshold, which means it keeps routing you to your weak domains until you have genuinely consolidated them, not just seen them once.

The concept library at /concepts covers 174 atomic concepts mapped to all five domains and all 30 task statements. Archie, our Socratic tutor, never gives you the answer directly; it guides you with graduated hints so that you build the reasoning pattern rather than memorising a response.

AI Skill Certs is independent of Anthropic. We are not affiliated with, endorsed by, or approved by Anthropic. We tell you that plainly because it matters: our content is built from the published exam guide and official Anthropic documentation, not from any insider access.

FeatureAnthropic AcademyAI Skill Certs
CostFree (Partner Network required)Subscription
FormatVideo modules with knowledge checksAdaptive scenario-based practice
OutputCompletion certificateReadiness score on 100-1000 scale
CertificationNoNo (prep only)
Socratic tutorNoYes (Archie)
Concept mappingCourse-level174 atomic concepts, 30 task statements

The two resources are complementary. Watch the Academy modules to build vocabulary, then use AI Skill Certs to stress-test your judgment under exam conditions.

What is the recommended study sequence?

  1. Join the Claude Partner Network and complete the claude academy login to access your course catalogue.
  2. Work through Academy modules in domain-weight order: Domain 1 first (27%), then Domains 3 and 4 (20% each), then Domain 2 (18%), then Domain 5 (15%).
  3. After each Academy module, read the corresponding concept pages on AI Skill Certs to see how the topic maps to specific task statements.
  4. Run a diagnostic practice exam on AI Skill Certs to identify your weakest domains before you have invested significant study time.
  5. Use Archie to work through the concepts where your diagnostic score is below 720.
  6. Run a full 60-question practice exam. If you score above 720 consistently across two consecutive attempts, book the real exam at $99.
  7. On exam day, read each scenario for the failure symptom first, identify the root cause, then select the proportionate fix. That heuristic covers the majority of CCA-F question patterns.

Frequently asked questions

Is Anthropic Academy the same as the CCA-F certification?
No. Anthropic Academy is a free learning portal that issues completion certificates for finished courses. The Claude Certified Architect, Foundations (CCA-F) is a separate proctored exam costing $99 per attempt, requiring a scaled score of 720 out of 1000. Completing Academy courses does not grant the CCA-F credential.
Do I need to pay to access Anthropic Academy?
Academy courses are free once you have joined the Claude Partner Network. Partner Network membership is also free to apply for. Anthropic provisions your Skilljar Academy account after your application is accepted and sends a login link by email. There are no course fees within the Academy.
How many questions are on the CCA-F exam and what score do I need to pass?
The CCA-F exam has 60 scenario-based multiple-choice questions, each with one correct answer and three plausible distractors. The exam 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 has the highest exam weighting?
Domain 1, Agentic Architecture and Orchestration, carries the highest weighting at 27% of the exam. It covers multi-agent orchestration, coordinator responsibilities, subagent spawning, and agentic loop design. Candidates should allocate the most study time to this domain relative to the others.
Can I sit the CCA-F exam without any hands-on experience building Claude agents?
Technically yes, but it is inadvisable. The exam uses scenario-based questions that describe real production failure modes. Candidates who have only watched Academy videos without building agentic systems, MCP integrations, or structured-output pipelines typically struggle to apply the pattern-recognition the scenarios require.
How does AI Skill Certs differ from Anthropic Academy for CCA-F prep?
Anthropic Academy provides free video-based conceptual instruction and issues completion certificates. AI Skill Certs is an independent adaptive practice platform with 60-question exams scored on the same 100-to-1000 scale as the real CCA-F, a Socratic tutor called Archie, and 174 atomic concept pages mapped to all five exam domains. AI Skill Certs is not affiliated with Anthropic.

People also ask

What is Anthropic Academy and how do I log in?
Anthropic Academy is a free learning portal on the Skilljar platform, available to members of the Claude Partner Network. To log in, join the Partner Network at anthropic.com, wait for your welcome email, and use the provisioned Skilljar link. There is no separate public registration page for the Academy.
Is Anthropic Academy free?
Yes. All Anthropic Academy courses are free for Claude Partner Network members. Partner Network membership is also free to apply for. Anthropic issues completion certificates at no charge. The only paid element in the ecosystem is the separate CCA-F certification exam, which costs $99 per attempt.
Does completing Anthropic Academy courses make you Claude certified?
No. Academy completion certificates confirm you finished a course but carry no proctored assessment. The Claude Certified Architect, Foundations credential requires passing the separate CCA-F exam with a scaled score of 720 out of 1000. The two are distinct and the Academy certificates do not substitute for the exam.
How many people have passed the Claude certification exam?
As of 3 June 2026, Anthropic reported more than 10,000 certified individuals across the Claude Partner Network, which had received applications from more than 40,000 firms. The CCA-F exam launched on 12 March 2026 and is part of a $100M Claude Partner Network programme.
What platform does Anthropic Academy use?
Anthropic Academy is delivered on Skilljar, a third-party learning management platform. Access is provisioned automatically when a Claude Partner Network application is approved. Learners authenticate using the email address associated with their Partner Network account, and Anthropic sends the initial login link by email.

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