---
title: "Retrieve enrichment information for a person"
url: "https://docs.unified.to/enrich/person/Retrieve_enrichment_information_for_a_person"
description: "API reference for Retrieve enrichment information for a person. Launch multiple pre-built Person integrations today with zero maintenance — all through a single API."
generated_at: "2026-06-12T19:01:42.039Z"
---
# Retrieve enrichment information for a person

 GET/enrich/{connection\_id}/person

## Parameters

**email**string 

The email of the person to search

**twitter**string 

The twitter handle of the person to search

**name**string 

The name of the person to search

**linkedin\_url**string 

The LinkedIn URL of the person to search

**company\_name**string 

The name of the company the person is associated with. Not valid by itself.

**connection\_id**string  required 

ID of the connection

## Returns

[EnrichPerson](/enrich/person/model)

A person object from an enrichment integration

**id**string 

Unique identifier for this person object

**created\_at**date 

The date that this person object was created (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**updated\_at**date 

The last date that this person object was updated (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ format)

**name**string 

The name of the person

**first\_name**string 

**last\_name**string 

**title**string 

The job title of the person

**birthdate**string 

The birth date of the person

**image\_url**string 

The image URL of the person

**bio**string 

The biography description of the person

**company**string 

The companyorganization name of the person

**company\_domain**string 

The company's domain

**emails** array 

An array of email addresses for this person

**telephones** array 

An array of telephones for this person

**twitter\_handle**string 

The twitter handle of the person

**linkedin\_url**string 

The LinkedIn URL of the person

**github\_url**string 

The GitHub URL of the person

**github\_username**string 

The GitHub username of the person

**twitter\_url**string 

The twitter URL of the person

**facebook\_url**string 

The Facebook URL of the person

**gender** enum

Valid values:

 "MALE" 

 "FEMALE" 

The gender of the person

**address**object 

The address of the person

**timezone**string 

The timezone code of the person

**utc\_offset**number 

The timezone's hourly offset from UTC of the person

**work\_histories** array 

**raw**any 

The raw data returned by the integration for this person

## Code Samples

### Node.js SDK

```
import { UnifiedTo } from '@unified-api/typescript-sdk';

const sdk = new UnifiedTo({
    security: {
        jwt: '<YOUR_API_KEY_HERE>',
    },
});

const connectionId = '5de520f96e439b002043d8dc';

const results = await sdk.enrich.getByEmail('jane@foo.com');
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/enrich/5de520f96e439b002043d8dc/person',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    email: '',
    twitter: '',
    name: '',
    linkedin_url: '',
    company_name: '',
  }
};

const results = await axios.request(options);
```

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name=")
  .setHeader("accept", "application/json")
  .setHeader("authorization", ".....")
  .execute()
  .toCompletableFuture()
  .thenAccept(System.out::println)
  .join();

client.close();
```

### Go

```
import (
	"fmt"
	"net/http"
	"io/ioutil"
)

url := `https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name=

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("accept", "application/json")
req.Header.Add("authorization", ".....")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := ioutil.ReadAll(res.Body)
```

### Python

```
import requests

url = "https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name="

headers = {
    "accept": "application/json",
    "authorization": "....."
}

response = requests.get(url, headers=headers)
```

### PHP

```
$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name=",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "GET",
  CURLOPT_HTTPHEADER => [
    "accept: application/json",
    "authorization: ....."
  ],
]);
```

### Ruby

```
require 'uri'
require 'net/http'
require 'openssl'

url = URI("https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name=")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["accept"] = 'application/json'
request["authorization"] = '....'

response = http.request(request)
puts response.read_body
```

### cURL

```
curl --request GET \
  --url 'https://api.unified.to/enrich/5de520f96e439b002043d8dc/person?email=&twitter=&name=&linkedin_url=&company_name=' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
