{ "info": { "name": "FullEnrich API", "description": "FullEnrich B2B contact enrichment API - waterfall email and mobile phone discovery across 15+ data vendors. Base URL https://app.fullenrich.com/api/v2 with Bearer token auth.", "schema": "https://schema.getpostman.com/json/collection/v2.1.0/collection.json" }, "auth": { "type": "bearer", "bearer": [ { "key": "token", "value": "{{apiKey}}", "type": "string" } ] }, "variable": [ { "key": "baseUrl", "value": "https://app.fullenrich.com/api/v2" }, { "key": "apiKey", "value": "" }, { "key": "enrichmentId", "value": "" } ], "item": [ { "name": "Contact Enrichment", "item": [ { "name": "Start Bulk Enrichment", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/contact/enrich/bulk", "host": [ "{{baseUrl}}" ], "path": [ "contact", "enrich", "bulk" ] }, "body": { "mode": "raw", "options": { "raw": { "language": "json" } }, "raw": "{\n \"name\": \"My enrichment batch\",\n \"webhook_url\": \"https://example.com/webhooks/fullenrich\",\n \"data\": [\n {\n \"first_name\": \"John\",\n \"last_name\": \"Doe\",\n \"domain\": \"acme.com\",\n \"company_name\": \"Acme Inc\",\n \"linkedin_url\": \"https://www.linkedin.com/in/johndoe\",\n \"enrich_fields\": [\"contact.work_emails\", \"contact.phones\"],\n \"custom\": {\n \"crm_id\": \"12345\"\n }\n }\n ]\n}" }, "description": "Submit up to 100 contacts for waterfall enrichment. Returns an enrichment_id." } }, { "name": "Get Bulk Enrichment Results", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/contact/enrich/bulk/{{enrichmentId}}?forceResults=false", "host": [ "{{baseUrl}}" ], "path": [ "contact", "enrich", "bulk", "{{enrichmentId}}" ], "query": [ { "key": "forceResults", "value": "false" } ] }, "description": "Retrieve the results of a bulk enrichment by its enrichment_id." } } ] }, { "name": "Reverse Email Lookup", "item": [ { "name": "Start Reverse Email Lookup", "request": { "method": "POST", "header": [ { "key": "Content-Type", "value": "application/json" } ], "url": { "raw": "{{baseUrl}}/contact/reverse/email/bulk", "host": [ "{{baseUrl}}" ], "path": [ "contact", "reverse", "email", "bulk" ] }, "body": { "mode": "raw", "options": { "raw": { "language": "json" } }, "raw": "{\n \"name\": \"Reverse lookup batch\",\n \"data\": [\n {\n \"email\": \"john.doe@acme.com\"\n }\n ]\n}" }, "description": "Resolve a person and company from one or more email addresses." } }, { "name": "Get Reverse Email Lookup Results", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/contact/reverse/email/bulk?enrichment_id={{enrichmentId}}", "host": [ "{{baseUrl}}" ], "path": [ "contact", "reverse", "email", "bulk" ], "query": [ { "key": "enrichment_id", "value": "{{enrichmentId}}" } ] }, "description": "Retrieve the result of a reverse email lookup by its enrichment_id." } } ] }, { "name": "Account", "item": [ { "name": "Get Workspace Credits", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/account/credits", "host": [ "{{baseUrl}}" ], "path": [ "account", "credits" ] }, "description": "Returns the current credit balance available in your workspace." } }, { "name": "Verify API Key", "request": { "method": "GET", "header": [], "url": { "raw": "{{baseUrl}}/account/keys/verify", "host": [ "{{baseUrl}}" ], "path": [ "account", "keys", "verify" ] }, "description": "Validates that the supplied API key is active." } } ] } ] }