1. Tables
Clay API Docs
  • Disclaimer
  • Authentication
    • Fetch Clay Cookies
      POST
  • Workspaces
    • Get All Workspaces in your account
      GET
  • Folders
    • Create a folder
      POST
    • Delete a folder
      DELETE
  • Resources
    • Fetch all resources
      POST
    • Search a resource in workspace
      POST
  • Workbooks
    • Create a Workbook
      POST
    • Delete a Workbook
      DELETE
  • Tables
    • Fetch all record ids in a table
      GET
    • Add a row in the table
      POST
    • Delete a row from the table
      DELETE
    • Delete all rows from a table
      DELETE
    • Run an enrichment column
      PATCH
    • Count number of rows in a Table
      GET
    • List all sources in a table
      GET
    • Add Webhook to a table
      PATCH
    • Delete a Source from the table
      DELETE
  • Credit Usage
    • Get a list of owners
      GET
    • Get User-Specific Credit Usage Report
      GET
    • Get User-Created Resources
      POST
    • Get Workspace Credit Usage Report
      GET
    • List all integrations
      GET
    • Get Integration Type Details
      GET
    • Get Integration-Specific Credit Usage
      GET
    • Get Integration Credit Usage Report
      GET
  1. Tables

Run an enrichment column

PATCH
https://api.clay.com/v3/tables/{TABLE_ID}/run
Runs an enrichment column on specified records in the table. This endpoint executes the enrichment for a specific field/column on a set of records.
Input:
fieldIds: Array of column IDs to run the enrichment on
runRecords: Specify which records to run using viewIdTopRecords
viewId: The view ID to run records from
numRecords: Number of rows to run (e.g., 10 runs the first 10 rows). Remove this parameter if you want to run all records in the view.
Use Cases:
Execute enrichment on the first N rows of a view
Run specific columns/fields for selected records
Trigger data enrichment workflows programmatically
Run enrichment on all records by omitting numRecords

Request

Path Params

Header Params

Body Params application/x-www-form-urlencodedRequired

Responses

🟢200Success
application/json
Bodyapplication/json

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH 'https://api.clay.com/v3/tables/<TABLE_ID>/run' \
--header 'Cookie: {YOUR_CLAY_COOKIES}' \
--data-urlencode '%7B%22fieldIds%22%3A%5B%22%7BFIELD_ID%7D%22%5D%2C%22runRecords%22%3A%7B%22viewIdTopRecords%22%3A%7B%22viewId%22%3A%22%7BVIEW_ID%7D%22%2C%22numRecords%22%3A10%7D%7D%2C%22callerName%22%3A%22API%22%7D='
Response Response Example
{}
Modified at 2026-01-16 07:50:08
Previous
Delete all rows from a table
Next
Count number of rows in a Table
Built with