Open Connector
所有 Tools

Clay

Connect to Clay to run GTM routines, batch enrichments, structured searches, and table queries through the Clay Public API.

clayv1.0.010 个 Tools

认证方式

方式底层类型状态说明
API Keyapi_keyavailable

调用示例

import { createClient } from "@open-connector/sdk";const oc = createClient({  baseUrl: "https://api.openconnector.dev",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await oc.executeTool({  slug: "CLAY_CREATE_FILTERS",  connectedAccountId: "conn_...",  arguments: { /* match this tool's input schema */ },});
import Composio from "@composio/client";const composio = new Composio({  baseURL: "https://api.openconnector.dev/composio",  apiKey: process.env.OPEN_CONNECTOR_API_KEY!,});const result = await composio.tools.execute("CLAY_CREATE_FILTERS", {  connected_account_id: "conn_...",  arguments: { /* match this tool's input schema */ },});
oc tools execute CLAY_CREATE_FILTERS --data '{ }'

Tool 目录

可用 Tools

10 个可调用操作

Create a search from structured filtersCLAY_CREATE_FILTERSStarts a new Clay search from a source type and structured filter fields.

Starts a new Clay search from a source type and structured filter fields.

认证

需要 Connected Account

Tags

search
List the filter fields available for a search source typeCLAY_FIELDSReturns every filter field accepted by POST /search/filters-mode for the given source type, including each field's type, description, allowed values, and usage guidance. Call this before creating a search to build valid filters.

Returns every filter field accepted by POST /search/filters-mode for the given source type, including each field's type, description, allowed values, and usage guidance. Call this before creating a search to build valid filters.

认证

需要 Connected Account

Tags

search
Get the authenticated userCLAY_GET_PUBLIC_API_MEReturns the Clay user and workspace associated with the API key.

Returns the Clay user and workspace associated with the API key.

认证

需要 Connected Account

Tags

me
Fetch progress and results for a batch runCLAY_GET_ROUTINE_RUN_BATCH_RESULTSReturns current status and results for an asynchronous batch routine run.

Returns current status and results for an asynchronous batch routine run.

认证

需要 Connected Account

Tags

routines
Fetch progress and results for a routine runCLAY_GET_RUN_RESULTSReturns current status and paginated results for an asynchronous routine run.

Returns current status and paginated results for an asynchronous routine run.

认证

需要 Connected Account

Tags

routines
Run a structured query across one or more tablesCLAY_QUERYRuns a structured query against Clay table data and returns records with field metadata.

Runs a structured query against Clay table data and returns records with field metadata.

认证

需要 Connected Account

Tags

tables
Run the search iterator and return the next page of resultsCLAY_RUNReturns the next page of records for an existing filter-mode search.

Returns the next page of records for an existing filter-mode search.

认证

需要 Connected Account

Tags

search
Execute a routine against 1-100 itemsCLAY_RUN_ROUTINEStarts an asynchronous routine run for up to 100 input items.

Starts an asynchronous routine run for up to 100 input items.

认证

需要 Connected Account

Tags

routines
Issue a presigned PUT URL for uploading a batch input JSONLCLAY_RUN_ROUTINE_BATCH_UPLOAD_URLCreates a presigned URL for uploading a JSONL file used by a batch routine run.

Creates a presigned URL for uploading a JSONL file used by a batch routine run.

认证

需要 Connected Account

Tags

routines
Start an async routine run-batch over an uploaded JSONL fileCLAY_START_ROUTINE_RUN_BATCHStarts an asynchronous batch routine run over a previously uploaded JSONL file.

Starts an asynchronous batch routine run over a previously uploaded JSONL file.

认证

需要 Connected Account

Tags

routines

Provider 资源