# LeadsForge Search Count

> LeadsForge Search Count is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Returns the count of leads matching specified search filters without retrieving the actual lead records.

## Facts

- Endpoint: POST https://x402.orthogonal.com/leadsforge/search/count
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/leadsforge-search-count-b66c09cb
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a3zm6cq5mBm_veDYzvhco

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 leadsforge-search-count-b66c09cb -d '<json body>'
```

Example prompt: How many leads are available for VP-level or C-suite contacts at software companies with 200–1000 employees in the United States, excluding anyone in HR?

## When to prefer this

Use this endpoint when you want to validate or tune search filter criteria before committing to a full (more expensive) lead data retrieval. Ideal for estimating market size, checking audience reach for campaigns, or iterating on Ideal Customer Profile (ICP) filters without paying for full result sets. Prefer this over the full search endpoint whenever the goal is sizing, not data retrieval.

## Known failure modes

- Invalid filter structure (mismatched include/exclude array types) returns a validation error
- Overly restrictive filters may return a count of zero with no error
- Conflicting include/exclude values for the same field may produce unexpected zero counts
- Missing required fields in filter objects may cause a 400 bad request
- Rate limiting or payment failure via x402 protocol results in 402 Payment Required

## How this service works

Count the number of results matching search filters without returning the actual data.

## Output

A numeric count representing how many lead records match the provided filter combination, without returning any actual lead data or contact details.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "companyNames": {
   "type": "object",
   "description": "Company name filter with include/exclude arrays"
  },
  "leadJobTitles": {
   "type": "object",
   "description": "Job title filter with include/exclude arrays and exactMatch boolean"
  },
  "leadLocations": {
   "type": "object",
   "description": "Lead location filter with include/exclude arrays"
  },
  "companyDomains": {
   "type": "object",
   "description": "Company domain filter with include/exclude arrays"
  },
  "companyRequired": {
   "type": "boolean",
   "description": "Require company info"
  },
  "leadDepartments": {
   "type": "object",
   "description": "Department filter with include/exclude arrays"
  },
  "leadSeniorities": {
   "type": "object",
   "description": "Seniority filter with include/exclude arrays"
  },
  "companyLocations": {
   "type": "object",
   "description": "Company location filter with include/exclude arrays"
  },
  "companyIndustries": {
   "type": "object",
   "description": "Industry filter with include/exclude arrays"
  },
  "maxContactsPerCompany": {
   "type": "number",
   "description": "Max contacts per company"
  },
  "companyEmployeeNumberRange": {
   "type": "object",
   "description": "Employee count range with min/max"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/leadsforge-search-count-b66c09cb/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.orthogonal.com](https://www.zero.xyz/host/x402.orthogonal.com/llms.txt)
