# Vaaya OpenFunnel Tech Companies Finder

> Vaaya OpenFunnel Tech Companies Finder is a paid API for AI agents from vaaya.ai, paid per call via x402, $0.4/call, status unknown (last checked 2026-09-14).

Finds companies using a specified technology, with optional filters for employee count, HQ country, lookback period, and contact enrichment

## Facts

- Endpoint: POST https://vaaya.ai/api/run/openfunnel/tech-companies
- Price: $0.4/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vaaya-openfunnel-tech-companies-finder-fdd698db
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cqQjlzCxOJt5Ta_t9x9dV

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability vaaya-openfunnel-tech-companies-finder-fdd698db -d '<json body>'
```

Example prompt: Find me companies using Salesforce with between 50 and 500 employees headquartered in the US, discovered in the last 90 days, and enrich their contact info too.

## When to prefer this

Choose this endpoint when you need to identify real companies actively using a specific technology — ideal for B2B prospecting, sales outreach targeting, competitive intelligence, or partnership discovery. Prefer it over generic company search APIs when technology adoption is the primary filter criterion.

## Known failure modes

- Missing required 'tech' field returns a validation error
- Invalid country code format (not exactly 3 characters) causes rejection
- Page number out of range (>1000) returns an error
- No matching companies found returns an empty result set
- Enrichment may be incomplete if company data is unavailable

## How this service works

Find companies whose recent JOB POSTS mention a technology via OpenFunnel (SYNC, 50 results/page): { tech } (e.g. "Snowflake") + optional `variations` (OR-matched phrasings, e.g. ["K8s"]), `lookback_days` (≤365), `page`, `enrich` (firmographics), `hq_country_code` (alpha-3), min/max_employee_count (filters auto-enable enrich), `include_evidence` (the job-post snippet — the outreach hook). Perfect for "sell to companies running X" and competitor-displacement plays.

## Output

A list of companies that use the specified technology, including company profiles and optional enrichment data such as contact details and evidence of technology adoption, paginated and filterable by employee count, HQ country, and recency.

## Request schema (JSON Schema)

```json
{
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "type": "object",
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "type": "string",
     "enum": [
      "POST"
     ]
    },
    "bodyType": {
     "type": "string",
     "enum": [
      "json",
      "form-data",
      "text"
     ]
    },
    "body": {
     "type": "object",
     "properties": {
      "tech": {
       "type": "string",
       "minLength": 1,
       "maxLength": 128
      },
      "variations": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "lookback_days": {
       "type": "integer",
       "minimum": 1,
       "maximum": 365
      },
      "page": {
       "type": "integer",
       "minimum": 1,
       "maximum": 1000
      },
      "exclude_vendor": {
       "type": "boolean"
      },
      "exclude_aggregators": {
       "type": "boolean"
      },
      "exclude_company_slugs": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "include_evidence": {
       "type": "boolean"
      },
      "enrich": {
       "type": "boolean"
      },
      "hq_country_code": {
       "type": "string",
       "minLength": 3,
       "maxLength": 3
      },
      "min_employee_count": {
       "type": "integer",
       "minimum": 0
      },
      "max_employee_count": {
       "type": "integer",
       "minimum": 0
      }
     },
     "required": [
      "tech"
     ],
     "additionalProperties": false,
     "$schema": "http://json-schema.org/draft-07/schema#"
    },
    "pathParams": {
     "type": "object"
    }
   },
   "required": [
    "type",
    "method",
    "bodyType",
    "body"
   ],
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   },
   "required": [
    "type"
   ]
  }
 },
 "required": [
  "input"
 ]
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vaaya-openfunnel-tech-companies-finder-fdd698db/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vaaya.ai](https://www.zero.xyz/host/vaaya.ai/llms.txt)
