Diagnose and fix Clay common errors and exceptions.
Use when encountering Clay errors, debugging failed requests,
or troubleshooting integration issues.
Trigger with phrases like "clay error", "fix clay",
"clay not working", "debug clay".
Quick reference for the top 12 most common Clay errors across webhooks, enrichment columns, HTTP API columns, Claygent, and CRM integrations. Each error includes the exact symptom, root cause, and fix.
Prerequisites
Clay account with an active table
Access to Clay table error indicators (red cells, exclamation marks)
Browser developer tools for webhook debugging
Instructions
Error 1: Webhook Returns 422 Unprocessable Entity
Symptom: Data sent to webhook URL but rows never appear in table.
Cause: Invalid JSON payload or missing Content-Type header.
Verify the response JSON path selector matches the actual response structure
Error 7: Claygent Returns "Could Not Find Information"
Symptom: Claygent column returns empty or generic responses.
Cause: Prompt is too vague, company is too small/private, or website blocks bots.
Fix:
Make prompts specific: "Find the CEO's name from the About page at {{domain}}" vs "Research this company"
Add fallback instructions: "If the information is not on the website, check LinkedIn and Crunchbase"
Use Navigator mode for JavaScript-heavy sites
Error 8: Enrichment Runs on Existing Rows Unexpectedly
Symptom: Credits consumed on rows that were already enriched.
Cause: Table-level auto-update is ON and a column was edited, triggering re-enrichment.
Fix: Go to Table Settings and toggle auto-update OFF at the table level. Then enable auto-run only on specific columns that need it. The table-level setting is the parent: if OFF, no columns auto-run.
Error 9: Rate Limited (429) on Webhook Submissions
Symptom:429 Too Many Requests when sending data via webhook.
Cause: Explorer plan has a 400 records/hour throttle.
Fix:
// Add delay between webhook submissions
async function sendWithThrottle(rows: any[], webhookUrl: string) {
for (const row of rows) {
const res = await fetch(webhookUrl, {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(row),
});
if (res.status === 429) {
const retryAfter = parseInt(res.headers.get('Retry-After') || '60');
console.log(`Rate limited. Waiting ${retryAfter}s...`);
await new Promise(r => setTimeout(r, retryAfter * 1000));
}
await new Promise(r => setTimeout(r, 250)); // 250ms between requests
}
}
Error 10: CRM Sync Creates Duplicate Contacts
Symptom: Same contact appears multiple times in HubSpot/Salesforce.
Cause: No deduplication key configured in the CRM push action.
Fix: When configuring the CRM action column, use email as the unique identifier and select Update existing record if found rather than always creating new.
Error 11: CSV Import Column Mapping Wrong
Symptom: Data appears in wrong columns after CSV import.
Cause: CSV headers don't match Clay column names exactly.
Fix: Normalize headers before import: trim whitespace, match case exactly. "Company Name" and "company_name" are treated as different columns.
Error 12: Formula Column Shows Error
Symptom: Formula column displays #ERROR or #REF.
Cause: Column name referenced in formula was renamed or deleted.
Fix: Edit the formula column and update all column references to match current names. Clay formulas reference columns by their display name (case-sensitive).