# Bytemine Technographic Company Lookup

> Bytemine Technographic Company Lookup is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP or x402, $0.2/call, status unknown (last checked 2026-09-15).

Returns a paginated list of companies using a specified technology, with optional firmographic filters and enrichment, billed per record returned.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/v1/tech/users
- Price: $0.2/call
- Payment: MPP, x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-bytemine-technographic-company-lookup-83e73b0f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_7oxxhNWskJfWnEq6mWOlc

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 agents-bytemine-ai-bytemine-technographic-company-lookup-83e73b0f -d '<json body>'
```

Example prompt: Can you find me all companies using HubSpot that are based in the United States, have between 50 and 500 employees, and rank in the top 50000 websites — return up to 25 results with firmographic details attached?

## When to prefer this

Use this endpoint when you need to identify companies adopting a specific technology for sales prospecting, competitive intelligence, or market sizing. It is the right choice when you have a technology name and want to enumerate its user base with optional demographic filtering. Prefer it over general company search when the primary signal is technology stack rather than firmographic attributes.

## Known failure modes

- Unknown or misspelled technology name returns empty results
- Missing required 'technology' field returns a validation error
- Overly restrictive filter combination (country + employees + web rank) returns zero results
- Pagination offset beyond total results returns empty array
- Rate limiting or payment failure returns 402 or 429 error

## How this service works

Bytemine is a B2B data platform for sales and go to market teams. It covers contact and company search across 135M professionals and 10M companies, contact and company enrichment, LinkedIn profile search and enrichment, live company intelligence read from a company's own web presence, technographics, buying intent scoring, and hiring, funding, job posting, and job change signals. Search results bill per record returned, enrichment bills only on a successful match, and count queries are free. This server is a pay-per-use, transparent proxy in front of Bytemine's own API: it handles identity, payment, and proxying. Agents can purchase autonomously or with their human's approval. This document is the source of truth for agents: it lists the complete verified paid surface with each operation's live price in its x-payment-info. Endpoints not listed here are not part of the supported catalog. The live catalog at /manifest.json is authoritative for prices and any free included units (prices[].includedUnits) - some meters include free usage per account before any charge, reserved for agents claimed by a human with a verified email.

## Output

Returns an array of matching companies (domain, company name, country, industry, web rank, employee count), plus total match count, number of records returned, and the technology queried. If count=true, only the total count is returned at no charge.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "boolean",
   "description": "True returns a free count only."
  },
  "limit": {
   "type": "integer",
   "description": "Records per page, 1 to 100. Default 25."
  },
  "enrich": {
   "type": "boolean",
   "description": "Attach firmographics to each matching company. Default false."
  },
  "offset": {
   "type": "integer"
  },
  "country": {
   "type": "string",
   "description": "Filter by HQ country."
  },
  "technology": {
   "type": "string",
   "description": "Technology name or slug, for example HubSpot."
  },
  "max_web_rank": {
   "type": "integer",
   "description": "For example 10000 for major sites only."
  },
  "min_web_rank": {
   "type": "integer"
  },
  "max_employees": {
   "type": "integer"
  },
  "min_employees": {
   "type": "integer"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "sites": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "domain": {
      "type": "string"
     },
     "country": {
      "type": "string"
     },
     "industry": {
      "type": "string"
     },
     "web_rank": {
      "type": "integer"
     },
     "company_name": {
      "type": "string"
     },
     "employee_count": {
      "type": "integer"
     }
    }
   }
  },
  "total": {
   "type": "integer"
  },
  "returned": {
   "type": "integer"
  },
  "technology": {
   "type": "string"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-technographic-company-lookup-83e73b0f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.bytemine.ai](https://www.zero.xyz/host/agents.bytemine.ai/llms.txt)
