# Bytemine Technology Catalog Search

> Bytemine Technology Catalog Search is a paid API for AI agents from agents.bytemine.ai, paid per call via MPP, price unknown, status unknown (last checked 2026-09-14).

Browse or search all tracked technologies with their adoption footprint, category, and domain usage count — free, no billing.

## Facts

- Endpoint: POST https://agents.bytemine.ai/functions/v1/api-gateway/v1/tech/catalog
- Price: price unknown
- Payment: MPP
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Provider: agents.bytemine.ai
- Website: https://agents.bytemine.ai
- Canonical page: https://www.zero.xyz/c/agents-bytemine-ai-bytemine-technology-catalog-search-f9ea4f12
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_eh8JbIRIp8w-wq9Nb9Pcz

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-technology-catalog-search-f9ea4f12 -d '<json body>'
```

Example prompt: Search the Bytemine technology catalog for CRM tools — show me up to 50 results so I can see which ones are tracked and how many domains use each.

## When to prefer this

Use this endpoint when you need to discover what technologies Bytemine tracks, validate that a specific technology is in the catalog before running technographic filters, or browse technologies by category to inform ICP or prospecting decisions. It is free and does not bill, making it safe for exploratory queries. Prefer this over contact or company search endpoints when the goal is understanding the technology landscape rather than finding specific companies or people.

## Known failure modes

- Invalid category string returns empty results or 0 matches
- limit outside 1-100 range may return validation error
- Empty catalog response if search query matches no tracked technology
- Network timeout for large unfiltered queries

## How this service works

Browse or search all tracked technologies with their adoption footprint and category. Free, does not bill.

## Output

Returns a total count of matching technologies and an array of technology objects, each containing a slug, category label, technology name, description, and the number of domains currently using that technology.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "q": {
   "type": "string",
   "description": "Search by name or slug."
  },
  "limit": {
   "type": "integer",
   "description": "Records per page, 1 to 100. Default 25."
  },
  "offset": {
   "type": "integer"
  },
  "category": {
   "type": "string",
   "description": "Filter to one category, for example CRM, Analytics."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "total": {
   "type": "integer"
  },
  "technologies": {
   "type": "array",
   "items": {
    "type": "object",
    "properties": {
     "slug": {
      "type": "string"
     },
     "category": {
      "type": "string"
     },
     "technology": {
      "type": "string"
     },
     "description": {
      "type": "string"
     },
     "domains_using": {
      "type": "integer"
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agents-bytemine-ai-bytemine-technology-catalog-search-f9ea4f12/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)
