# 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: 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:

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

The question should be specific, self-contained, and written in natural language.
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.
