> For the complete documentation index, see [llms.txt](https://agpt.co/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://agpt.co/docs/integrations/block-integrations/person.md).

# Apollo Person

Blocks for enriching individual person data including contact details and email discovery.

## Get Person Detail

### What it is

Get detailed person data with Apollo API, including email reveal

### How it works

This block enriches person data using Apollo's API. You can look up by Apollo person ID for best accuracy, or match by name plus company information, LinkedIn URL, or email address.

Returns comprehensive contact details including email addresses (if available), job title, company information, and social profiles.

### Inputs

| Input            | Description                                                                 | Type | Required |
| ---------------- | --------------------------------------------------------------------------- | ---- | -------- |
| person\_id       | Apollo person ID to enrich (most accurate method)                           | str  | No       |
| first\_name      | First name of the person to enrich                                          | str  | No       |
| last\_name       | Last name of the person to enrich                                           | str  | No       |
| name             | Full name of the person to enrich (alternative to first\_name + last\_name) | str  | No       |
| email            | Known email address of the person (helps with matching)                     | str  | No       |
| domain           | Company domain of the person (e.g., 'google.com')                           | str  | No       |
| company          | Company name of the person                                                  | str  | No       |
| linkedin\_url    | LinkedIn URL of the person                                                  | str  | No       |
| organization\_id | Apollo organization ID of the person's company                              | str  | No       |
| title            | Job title of the person to enrich                                           | str  | No       |

### Outputs

| Output  | Description                        | Type            |
| ------- | ---------------------------------- | --------------- |
| error   | Error message if enrichment failed | str             |
| contact | Enriched contact information       | Dict\[str, Any] |

### Possible use case

**Contact Enrichment**: Get full contact details from partial information like name and company.

**Email Discovery**: Find verified email addresses for outreach campaigns.

**Profile Completion**: Fill in missing contact details in your CRM or database.

***


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://agpt.co/docs/integrations/block-integrations/person.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
