---
title: "Retrieve enrichment information for a company"
url: "https://docs.unified.to/enrich/company/Retrieve_enrichment_information_for_a_company"
description: "API reference for Retrieve enrichment information for a company. Launch multiple pre-built Company integrations today with zero maintenance — all through a single API."
generated_at: "2026-05-22T23:27:06.447Z"
---
# Retrieve enrichment information for a company

 GET/enrich/{connection\_id}/company

## Parameters

**domain**string 

The domain of the company to search

**name**string 

The name of the company to search

**connection\_id**string  required 

ID of the connection

## Returns

[EnrichCompany](/enrich/company/model)

A company object from an enrichment integration

**id**string 

Unique identifier for this company object

**created\_at**date 

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

**updated\_at**date 

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

**name**string 

The name of the company

**description**string 

The description of the company

**domain**string 

The webmail domain of the company

**twitter\_handle**string 

The twitter handle of the company

**twitter\_url**string 

The twitter URL of the company

**address**object 

The address of the company

**telephones** array 

An array of telephones for this company

**linkedin\_url**string 

The LinkedIn URL of the company

**crunchbase\_url**string 

The Crunchbase URL of the company

**facebook\_url**string 

The Facebook URL of the company

**youtube\_url**string 

The Youtube URL of the company

**instagram\_url**string 

The Crunchbase URL of the company

**yelp\_url**string 

The Yelp URL of the company

**logo\_url**string 

The URL of the logo of the company

**exchange**string 

The public exchange of the company (eg. NASDAQ)

**stock**string 

The stock ticker of the company (eg. AMZN)

**year\_founded**number 

The year that the company was founded

**alexa\_rank**number 

The Alexa rank of the company

**naics\_code**number 

The NAICS code of the company

**sic\_code**number 

The SIC code of the company

**employees**string 

The number of employees at the company

**revenue**string 

The approximate revenue of the company

**industry**string 

The industry of the company

**raw**any 

The raw data returned by the integration for this company

## 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.getByDomain('foo.com');
```

### Node.js (axios)

```
const options = {
  method: 'GET',
  url: 'https://api.unified.to/enrich/5de520f96e439b002043d8dc/company',
  headers: {
    authorization: 'bearer .....'
  },
  params: {
    domain: '',
    name: '',
  }
};

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

### Java

```
AsyncHttpClient client = new DefaultAsyncHttpClient();

client.prepare("GET", "https://api.unified.to/enrich/5de520f96e439b002043d8dc/company?domain=&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/company?domain=&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/company?domain=&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/company?domain=&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/company?domain=&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/company?domain=&name=' \
  --header 'accept: application/json' \
  --header 'authorization: .....'
```
