Clay

Clay for GTM Engineering: How to Build Tables That Work Like Systems

How GTM engineers use Clay as a revenue system, not a spreadsheet: build specs, cost discipline, AI verification, QA and handoff to the CRM and workflows.

Mauricio Esparza By ·Published ·6 min read
mithub.club
Short answer

In GTM engineering, Clay is used to build repeatable revenue systems: tables with a defined input, a cost-aware enrichment and research path, verified AI outputs, an explainable score and a clear destination in the CRM or a workflow. The GTM engineer's job is not running lookups but designing that system and proving it changes pipeline.

For a GTM engineer, Clay is a place to build revenue systems, not a place to look things up. The work is designing a table with a clear input, a cost-aware path through enrichment and AI research, verified outputs, an explainable score and a destination where someone acts on the result, then proving that the whole thing changed pipeline. Anyone can run a lookup. The engineering is in the design around it.

If you're new to the tool, start with What is Clay?. This article assumes you know what waterfalls, Claygent and signals are, and focuses on how to use them the way a GTM engineer would.

Tasks vs systems in Clay

Clay's own writing on the role frames GTM engineering as building automated revenue systems with AI, data and workflow automation, where the unit of work is a system rather than a task (Clay). In Clay, the difference shows up in very concrete ways:

Task mindsetSystem mindset
"Enrich this list""Which accounts should a rep call this week, and why?"
Every column runs on every rowExpensive columns run only on rows that passed earlier checks
AI output pasted into messagesAI output verified, sourced, and allowed to say "unknown"
CSV export at the endWrite-back to the CRM or a webhook, with an owner
Done when the table is fullDone when a metric moved

That's the same idea behind MitHub's build systems, not just tasks: a system keeps producing value after you stop touching it.

The MitHub Clay Build Spec

Before building any table that matters, write a one-page spec. It takes 20 minutes and saves days of rework. It also becomes a portfolio artifact.

  1. The money question. What decision does this table support, and how does it connect to revenue? Trace it backwards the way Follow the money teaches: payment → decision → conversation → first contact → source.
  2. Input contract. What must every row have to enter (a domain, a CRM ID, a form timestamp)? What happens to rows that don't?
  3. Spend gates. Which checks must a row pass before it gets expensive enrichment or AI research?
  4. Enrichment path. Which fields, from which waterfall, in which order, and why each field is needed.
  5. Research questions. Each Claygent column: input, one question, output format, rule for uncertainty.
  6. Verification. How many rows you'll check by hand, and what error rate is acceptable before the column is trusted.
  7. Score. The components and the thresholds, written in plain language.
  8. Destination. Where the result goes (CRM field, sequence, webhook, alert) and who owns acting on it.
  9. Success metric. What will you measure in two to four weeks to know it worked?

If you can't fill in 1, 8 and 9, don't build yet.

Design principles that separate engineers from operators

1. Gate spend with conditions

Every enrichment and AI step uses platform capacity, and many data lookups also use credits. Clay's docs describe these as two meters: Actions for platform work and Data Credits for data purchased from providers, with the option to connect your own keys for some providers (Actions & Data Credits – Clay Docs). Pricing details change, so read the current docs, but the design lesson doesn't change: cheap checks first, expensive steps last, and only for rows that earned them.

A typical order:

  1. Free or cheap filters (country, industry, is the domain valid?)
  2. Firmographic enrichment
  3. Fit score
  4. AI research, only for rows above a fit threshold
  5. People search and contact waterfalls, only for accounts you'll actually work

2. Design waterfalls with evidence

Clay lets you reorder, add and remove providers in a waterfall (Waterfalls – Clay Docs). Don't set the order once and forget it. Output which provider answered, and after a few hundred rows look at the results for your segment. Reorder based on what actually found valid data for your market.

3. Treat AI answers as hypotheses

Clay describes Claygents as agents that take inputs, follow instructions and write structured output (Claygent). Structured doesn't mean correct. Every research column should:

  • Return a fixed format (yes / no / unknown, a number, a short list).
  • Include the URL where the evidence was found.
  • Be allowed to return "unknown" without penalty.
  • Be spot-checked on a sample before it influences a score.

A useful rule: anything that will appear in a message to a prospect must be traceable to a public source. Inferences about a company's problems stay internal. They can shape which accounts you prioritize; they never become claims.

4. Keep scores explainable

A single number from 0 to 100 hides why a record ranks where it does. Score components separately (for example fit, timing and reachability, as in our Clay guide) and route on the combination. When a rep asks "why is this account on my list?", the table should answer in one sentence.

5. Every table needs a destination

Outputs go somewhere: a CRM field, a sequence, a Slack alert, or a webhook to a workflow tool. Clay can receive data through webhooks and send it through HTTP API columns (Webhooks in Clay – Clay Docs). Webhook sources have submission limits described in that same guide, which is one more reason to design inbound tables deliberately. When routing gets complex (branches, retries, approvals, multiple apps), hand the result to a workflow tool. Clay vs n8n walks through that split.

6. Version and document

Name tables and columns so someone else can understand them. Keep a changelog in the spec: what you changed, why, and what happened. If you're the only one who understands the table, it's not a system yet.

Worked example: a lookalike list for a multi-location business

This is a hypothetical example to show the method, not a MitHub client result.

Imagine you work with a company selling scheduling and follow-up automation to multi-location service businesses. Their best customers have many locations, handle lots of inbound calls, and lack online booking.

Money question: Which multi-location businesses in our target states should sales contact this month?

Table design:

StepColumnGate
1Company domain (input)Must be a valid domain
2Industry, headcount, HQ state (waterfall)Industry in target list
3Claygent: "How many physical locations does this company list on its own website? Return a number or unknown, plus the URL."Headcount within range
4Claygent: "Does the website offer online booking? Return yes, no or unknown, plus the URL."Locations ≥ threshold
5Fit score (locations, industry, state)
6Timing: recent public job posts for front-desk or call-center rolesFit is high
7People search: operations leaderFit is high
8Email waterfall + verificationPerson found
9Write to CRM with score, reasons and source URLsVerified contact

Verification: check 25 rows by hand for steps 3 and 4. If the location count is wrong often, refine the prompt (for example, point it to a "locations" page) and rerun on the sample before running the full list.

Success metric: in four weeks, compare reply and meeting rates on high-fit accounts against the team's previous list. If there's no difference, the score is wrong, and that's a finding worth documenting too.

The Clay skills that make you hireable

Knowing where the buttons are gets you started. What companies need is judgment. Using MitHub's capability ladder:

  • Doer: runs enrichments and builds tables from templates.
  • Director: writes precise research prompts, judges output quality, catches bad data.
  • Designer: writes the Build Spec, gates spend, designs the score and the destination.
  • Owner: is accountable for whether the table produced meetings and pipeline.

Aim for Designer, and document every table you build as proof of work. If you're mapping out that path, read how to become a GTM engineer and the broader view of what a GTM engineer does.

Checklist before you hit "run all"

  • The money question is written down
  • Rows that fail the input contract are filtered out
  • Expensive columns have conditions
  • Waterfalls record which provider answered
  • Research columns return a fixed format, a source URL and allow "unknown"
  • A sample has been checked by hand
  • The score can be explained in one sentence
  • The destination and its owner are defined
  • The success metric and review date are set

Frequently asked questions

Do I need to code to use Clay as a GTM engineer?

Not to start. Formulas, clear prompts and basic JSON and API concepts go a long way. SQL or JavaScript help later, especially when you connect Clay to other systems.

How do I keep Clay costs under control?

Gate expensive steps behind conditions so they only run on rows that pass earlier checks, order waterfalls from cheapest reliable provider upward, enrich only fields that feed a decision, and consider your own provider API keys where Clay supports them.

Can I trust Claygent outputs?

Treat them as hypotheses. Ask for a fixed output format and a source URL, allow an 'unknown' answer, and spot-check a sample by hand before the column drives scoring or messaging.

Sources

  1. GTM Engineering: What It Is and How to Hire — Clay (accessed 2026-09-17)
  2. Waterfalls – Clay Docs — Clay University (accessed 2026-09-17)
  3. Actions & Data Credits – Clay Docs — Clay University (accessed 2026-09-17)
  4. Claygent — Clay (accessed 2026-09-17)
  5. Webhooks in Clay – Clay Docs — Clay University (accessed 2026-09-17)
ClayGTM EngineeringData Enrichment
Mauricio Esparza
Mauricio EsparzaGTM Systems Lead · Revenue Engineer · Founder of MitHub. Designs and runs revenue systems for multi-location businesses: AI voice campaigns, enrichment, CRM automation and attribution. Founded MitHub to teach the method in the open.

Part of Clay on MitHub.

Keep going

Clay

What Is Clay? Enrichment, AI Research Agents, Signals and Scoring Explained

What Clay is and how GTM teams use it: waterfall enrichment, Claygent research agents, signals, scoring, common architectures and when not to use it.

Read · 10 min →mithub.club
Clay

Clay vs n8n: Different Jobs, Better Together

Clay and n8n aren't rivals. Clay enriches, researches and scores data; n8n routes and acts. See when to use each and a full architecture using both.

Read · 6 min →mithub.club
GTM Engineering

What Is GTM Engineering? The Complete Guide

GTM engineering explained: where the role came from, what GTM engineers build, tools, skills, job market data, how it differs from RevOps and how to learn it.

Read · 9 min →mithub.club
GTM Engineering

What Does a GTM Engineer Do? Responsibilities, Tools and a Real Workflow

What a GTM engineer does day to day: the build loop, typical projects, tools and skills from job-postings data, pay context and a build ticket to use.

Read · 6 min →mithub.club
AI & Automation

Build Systems, Not Just Tasks: From Documentation to Scalable Operations

Why finishing tasks is not enough in the AI economy, and how to turn repeatable work into systems: document, automate, then scale operations beyond you.

Read · 6 min →mithub.club
GTM Engineering

How to Become a GTM Engineer: Skills, Stack and a 90-Day Plan

A practical path to becoming a GTM engineer: the skills that matter, the tools to learn, a 90-day plan and three proof-of-work projects that companies notice.

Read · 7 min →mithub.club