Type Reference

The 5 Human Design Types Explained — API Data Reference

Complete reference for the 5 Human Design Types with API response examples and calculation details.

Publicado 24 de marzo de 2026

Human Design Types: The Foundation of the System

Human Design Type is the single most important output of a chart calculation. It determines a person’s energetic role, their decision-making strategy, and what “success” feels and looks like for them. The Human Design API returns type as a top-level field in every bodygraph response.

There are 5 Types. Each is determined algorithmically from center definitions and channel connections — no subjective interpretation required.

How Type Is Determined

Type determination follows a strict decision tree based on the bodygraph calculation:

  1. Is the Sacral Center defined?
    • If yes AND there is a motor connected to the Throat → Manifesting Generator
    • If yes AND no motor-to-Throat connection → Generator
  2. Is the Sacral undefined and is there a motor-to-Throat connection?
    • Motors: Heart (Will), Solar Plexus, Root, or Sacral
    • If yes → Manifestor
  3. Is the Sacral undefined and no motor-to-Throat?
    • If some centers are defined → Projector
    • If no centers are defined → Reflector

The motors that count for Manifestor determination are: Heart/Will Center, Solar Plexus Center, Root Center, and Sacral Center (for Manifesting Generator only).

The 5 Types in Detail

1. Generator

Population: approximately 37% Strategy: To Respond Signature (success): Satisfaction Not-Self theme (misalignment): Frustration

The Generator is the most common Human Design Type. Generators have a defined Sacral Center, giving them consistent, renewable life-force energy. They are designed to be the workforce of the planet — but only when responding to what life brings them rather than initiating action from the mind.

The Sacral Center produces a gut-level response: an energized “uh-huh” (yes) or a deflating “unh-unh” (no). This response is the Generator’s primary decision-making tool.

Center configuration: Sacral defined, no motor connected directly to Throat

API response:

{
  "type": "Generator",
  "strategy": "To Respond",
  "authority": "Sacral Authority",
  "signature": "Satisfaction",
  "not_self": "Frustration"
}

2. Manifesting Generator

Population: approximately 33% Strategy: To Respond (then inform) Signature (success): Satisfaction and Peace Not-Self theme (misalignment): Frustration and Anger

Manifesting Generators share the defined Sacral with Generators but also have a motor connected to the Throat, giving them the ability to initiate. They are multi-passionate, fast-moving, and designed to skip steps. The strategy is still to respond first, then inform others before acting.

Center configuration: Sacral defined, AND a motor (Sacral, Heart, Solar Plexus, or Root) connected to Throat via defined channels

API response:

{
  "type": "Manifesting Generator",
  "strategy": "To Respond",
  "authority": "Sacral Authority"
}

3. Projector

Population: approximately 21% Strategy: Wait for the Invitation Signature (success): Success Not-Self theme (misalignment): Bitterness

Projectors are non-energy types with an undefined Sacral Center. They are designed to guide, direct, and manage the energy of others — specifically Generators and Manifesting Generators. Projectors see deeply into systems and people, but their gifts are best received when they are formally invited to share them.

Center configuration: Sacral undefined, no motor connected directly to Throat, at least one other Center defined

API response:

{
  "type": "Projector",
  "strategy": "Wait for the Invitation",
  "authority": "Splenic Authority"
}

4. Manifestor

Population: approximately 9% Strategy: To Inform (before acting) Signature (success): Peace Not-Self theme (misalignment): Anger

Manifestors are the only Type with a direct motor-to-Throat connection and an undefined Sacral. This configuration gives them the ability to initiate action independently, without needing external input or response. Manifestors are designed to make things happen, but they generate resistance when they act without informing others.

Center configuration: Sacral undefined, AND a motor (Heart, Solar Plexus, or Root) connected directly to Throat

API response:

{
  "type": "Manifestor",
  "strategy": "To Inform",
  "authority": "Ego Manifestor Authority"
}

5. Reflector

Population: approximately 1% Strategy: Wait a Lunar Cycle (28 days) Signature (success): Surprise and Delight Not-Self theme (misalignment): Disappointment

Reflectors have no defined Centers whatsoever. They are completely open, sampling and reflecting the energy of everyone around them. Because they have no consistent definition, Reflectors experience themselves differently from day to day depending on who they spend time with. Their decision-making process requires a full lunar cycle for major choices.

Center configuration: All 9 Centers undefined

API response:

{
  "type": "Reflector",
  "strategy": "Wait a Lunar Cycle",
  "authority": "Lunar Authority",
  "defined_centers": []
}

Type in API Responses

Every call to /v1/bodygraph returns type at the top level. Here is a minimal example:

const response = await fetch('https://api.humandesignhub.app/v1/bodygraph', {
  method: 'POST',
  headers: {
    'X-API-KEY': 'YOUR_API_KEY',
    'Content-Type': 'application/json',
  },
  body: JSON.stringify({
    datetime: '1985-06-21T08:15:00-05:00',
    verbose: false,
  }),
});

const chart = await response.json();

// Branching logic based on type
switch (chart.type) {
  case 'Generator':
  case 'Manifesting Generator':
    showSacralResponseUI(chart);
    break;
  case 'Projector':
    showInvitationTrackerUI(chart);
    break;
  case 'Manifestor':
    showInformingProtocolUI(chart);
    break;
  case 'Reflector':
    showLunarCycleUI(chart);
    break;
}

Type Distribution Summary

TypePopulationSacralMotor-to-ThroatKey Field
Generator~37%DefinedNoResponding
Manifesting Generator~33%DefinedYesResponding + Initiating
Projector~21%UndefinedNoGuiding
Manifestor~9%UndefinedYesInitiating
Reflector~1%UndefinedNo (all open)Reflecting

Building Type-Aware Applications

Type data is most useful when it drives UI branching or content personalization. Common patterns:

  • Show different onboarding flows per Type
  • Filter coaching content by Type strategy
  • Use Type + Authority together for decision-support features
  • In composite/compatibility views, show Type interaction dynamics

For a broader introduction to the system, see What is Human Design?.

Enlaces relacionados