{
   "info": {
      "name": "Unified ENRICH API",
      "description": "One API to Rule Them All\n\n## API Endpoints (Data Centers)\n\nUnified.to operates multiple data centers. You can switch between them using the `base_url` variable:\n\n- **US (Default)**: https://api.unified.to\n- **EU**: https://api-eu.unified.to\n- **AU**: https://api-au.unified.to\n\nTo change the data center:\n1. Go to the collection's \"Variables\" tab\n2. Update the `base_url` value to your preferred endpoint\n3. Save the collection\n\n## Authentication\n\nTo use this API, you need an API Token. Follow these steps to obtain your token:\n\n1. Visit the Unified.to API Keys page: https://app.unified.to/apikeys, https://app-eu..unified.to/apikeys, https://app-au.unified.to/apikeys\n2. Log in to your account (or create one if you haven't already)\n3. Generate a new API key or copy an existing one\n4. Use the API key as a Bearer token in the Authorization header\n\n## Setup in Postman\n\n**Option 1: Using Collection Variables (Recommended)**\n1. Go to the collection's \"Variables\" tab\n2. Set the `api_token` variable to your API key\n3. Save the collection\n4. All requests will automatically use this token\n\n**Option 2: Using Collection Authorization**\n1. Go to the collection's \"Authorization\" tab\n2. Select \"Bearer Token\" as the type\n3. Enter `{{api_token}}` in the \"Token\" field (or paste your API key directly)\n4. Save the collection\n\nFor more information, visit: https://docs.unified.to",
      "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json",
      "updatedAt": "2026-09-04T20:36:52.000Z"
   },
   "item": [
      {
         "name": "Enrich People",
         "item": [
            {
               "name": "Retrieve enrichment information for a person",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/enrich/{{connection_id}}/person",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "enrich",
                        "{{connection_id}}",
                        "person"
                     ],
                     "query": [
                        {
                           "key": "email",
                           "description": "The email of the person to search"
                        },
                        {
                           "key": "twitter",
                           "description": "The twitter handle of the person to search"
                        },
                        {
                           "key": "name",
                           "description": "The name of the person to search"
                        },
                        {
                           "key": "linkedin_url",
                           "description": "The LinkedIn URL of the person to search"
                        },
                        {
                           "key": "company_name",
                           "description": "The name of the company the person is associated with.  Not valid by itself."
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      },
      {
         "name": "Enrich Companies",
         "item": [
            {
               "name": "Retrieve enrichment information for a company",
               "request": {
                  "url": {
                     "raw": "{{base_url}}/enrich/{{connection_id}}/company",
                     "host": [
                        "{{base_url}}"
                     ],
                     "protocol": "https",
                     "path": [
                        "enrich",
                        "{{connection_id}}",
                        "company"
                     ],
                     "query": [
                        {
                           "key": "domain",
                           "description": "The domain of the company to search"
                        },
                        {
                           "key": "name",
                           "description": "The name of the company to search"
                        }
                     ]
                  },
                  "method": "GET",
                  "auth": {
                     "type": "bearer",
                     "bearer": [
                        {
                           "key": "token",
                           "value": "{{api_token}}",
                           "type": "string"
                        }
                     ]
                  }
               }
            }
         ]
      }
   ],
   "variable": [
      {
         "key": "base_url",
         "value": "https://api.unified.to",
         "type": "string"
      },
      {
         "key": "api_token",
         "value": "YOUR_API_TOKEN_HERE",
         "type": "string"
      }
   ]
}