Find up to 100 companies that RESEMBLE a seed set or description via OpenFunnel
Find up to 100 companies that RESEMBLE a seed set or description via OpenFunnel (SYNC). Pass `seed_domains` (≤10 — e.g. your closed-won accounts) and/or `query` (≤200 chars), `limit` (1-100, upstream default 10 — SET IT EXPLICITLY), and optional filters: min/max_employees, funding_stages (Pre-Seed…Public), locations (ISO alpha-3: USA, GBR, IND — call `openfunnel:options` {kind:"countries"} for the list). Returns companies with domains + firmographics. Need >100? Use `openfunnel:lookalikes-bulk`…
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://vaaya.ai/api/run/openfunnel/lookalikes
| Category | Company and compliance |
|---|---|
| Provider host | vaaya.ai |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.05 | 312 ms |
Example input (from the provider)
{
"body": {
"funding_stages": [
"Pre-Seed"
],
"limit": 1,
"locations": [
"exa"
],
"max_employees": 0,
"min_employees": 0,
"query": "example",
"seed_domains": [
"example"
]
},
"bodyType": "json",
"method": "POST",
"pathParams": {},
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"funding_stages": {
"items": {
"enum": [
"Pre-Seed",
"Seed",
"Series A",
"Series B",
"Series C",
"Series D",
"Series E+",
"Public"
],
"type": "string"
},
"type": "array"
},
"limit": {
"maximum": 100,
"minimum": 1,
"type": "integer"
},
"locations": {
"items": {
"maxLength": 3,
"minLength": 3,
"type": "string"
},
"type": "array"
},
"max_employees": {
"minimum": 0,
"type": "integer"
},
"min_employees": {
"minimum": 0,
"type": "integer"
},
"query": {
"maxLength": 200,
"minLength": 1,
"type": "string"
},
"seed_domains": {
"items": {
"minLength": 3,
"type": "string"
},
"maxItems": 10,
"type": "array"
}
},
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"pathParams": {
"type": "object"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}