Skip to main content
POST
/
api
/
v1
/
signal
/
deploy
/
technography-search-agent
Deploy Technography Search Signal
curl --request POST \
  --url https://api.openfunnel.dev/api/v1/signal/deploy/technography-search-agent \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <x-api-key>' \
  --header 'X-User-ID: <x-user-id>' \
  --data '
{
  "name": "<string>",
  "technographic_list": [
    "<string>"
  ],
  "technographic_variations": [
    "<string>"
  ],
  "exclude_company_name": "<string>",
  "technography_context": "<string>",
  "timeframe": 183,
  "icp_filters": {},
  "icp_id": 123,
  "repeat": false,
  "account_audience_name": "<string>",
  "people_audience_name": "<string>",
  "max_credit_limit": 123
}
'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Headers

X-API-Key
string
required
X-User-ID
string
required

Body

application/json
name
string | null

Name/identifier for this signal run

technographic_list
string[] | null

List of technologies to search for (e.g. ['Snowflake', 'Databricks'])

technographic_variations
string[] | null

Alternate names/variations of the technologies

exclude_company_name
string | null

Company name to exclude from results

technography_context
string | null

Additional context for the technology search

timeframe
integer | null

Time limit in days (1-365)

Required range: 1 <= x <= 365
icp_filters
Icp Filters · object

ICP filters with target_roles and company_criteria

icp_id
integer | null

ICP ID to use for filtering

repeat
boolean | null
default:false

Whether this signal should recur daily

account_audience_name
string | null

Audience name for auto-adding discovered accounts

people_audience_name
string | null

Audience name for people enrichment

max_credit_limit
integer | null

Credit limit to enforce on this signal. Signal will stop once max_credit_limit is hit

Response

Successful Response