# Bytemine Prospect Contact Search

> Bytemine Prospect Contact Search is a paid API for AI agents from bytemine.pay.zeroclick.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Search a B2B prospect database by job title, seniority, department, industry, company, location, and other filters, returning masked contact results billed per result.

## Facts

- Endpoint: GET https://bytemine.pay.zeroclick.io/functions/v1/api-gateway/contacts/search
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bytemine-prospect-contact-search-00122d7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_1LazQDnet9eoAfqJtHAgA

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 bytemine-prospect-contact-search-00122d7c
```

Example prompt: Search the Bytemine prospect database for VP-level contacts in the Sales department at SaaS companies in the United States — return up to 25 results.

## When to prefer this

Use this endpoint when you need to discover and filter a broad set of B2B prospects by demographic criteria before unlocking their full contact details. Prefer this over the individual contact lookup endpoint when you don't yet have specific contact IDs and need to build a prospect list from scratch. It is ideal for SDR workflows, ABM campaigns, and recruiting pipelines where you need to identify targets by title, seniority, department, industry, or geography.

## Known failure modes

- No results returned if filters are too narrow or no matching prospects exist
- Invalid filter format (must be string, array, or {value, included} object) causes a 400 error
- Exceeding pageSize limit may result in truncated or error response
- Authentication or payment failure causes a 402 or 401 error
- Rate limiting may occur for high-volume repeated queries

## How this service works

Search the prospect database by job title, seniority, department, industry, company, location, and more. Filters accept a plain string, an array of strings, or { value, included } objects for excludes. Returns masked results. Billed per result returned, up to pageSize.

## Output

Returns a paginated list of masked prospect contact records matching the specified filters. Each result includes job title, seniority, department, industry, and company information. Full contact details (email, phone) are masked and must be unlocked separately. Billing applies per result returned up to the requested page size.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "pathParams": {
     "type": "object",
     "contactId": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "properties": {}
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bytemine-prospect-contact-search-00122d7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from bytemine.pay.zeroclick.io](https://www.zero.xyz/host/bytemine.pay.zeroclick.io/llms.txt)
