Hi. Is it possible to send an API call to a workbook, run some enrichment tools, and then return the result in the response body?
Clay doesn't offer direct API endpoints, but you can achieve this workflow using webhooks. Send data to a Clay table via its unique webhook endpoint, which triggers enrichment processing immediately. After enrichments complete, use HTTP API actions to push results back to your system. Note that enrichment responses may take a minute or more due to processing time.
yes, return to webhook node does that in make or n8n
Exactly! Both Make and Zapier support "return to webhook" functionality that enables synchronous API-like responses. You can wrap Clay in these tools to receive API requests, trigger Clay processing via webhooks, and return results once enrichment completes. This creates a proper API endpoint that waits for Clay's enrichment to finish before responding. Keep in mind enrichment responses may take a minute or more due to processing time.
