# BuiltWith Technology Search

> BuiltWith Technology Search is a paid API for AI agents from api.builtwith.com, paid per call via x402, $0.0495/call, status unknown (last checked 2026-09-14).

Search for websites using specific technologies using a natural-language query against BuiltWith's web technology database

## Facts

- Endpoint: POST https://api.builtwith.com/agent/technology-search
- Price: $0.0495/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/builtwith-technology-search-7f2cdadf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_NjH3bfZgzKv2sxwL6Ed0s

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 builtwith-technology-search-7f2cdadf -d '<json body>'
```

Example prompt: Use BuiltWith to find up to 20 websites that are currently using the Shopify e-commerce platform — I want to see who's running on it.

## When to prefer this

Choose this endpoint when you need to discover which websites or companies are using a specific technology, platform, or software product. It is ideal for sales prospecting, competitive intelligence, market research, and technology adoption analysis. Prefer it over general web scraping or search engines when you need structured, curated technology-usage data with ranked results.

## Known failure modes

- Empty Results array if no websites match the technology query
- Query too vague or misspelled technology name returns irrelevant or zero results
- Limit parameter out of range (must be 1-100) causes validation error
- Query exceeds 500 character limit triggers schema validation failure
- Payment failure or insufficient funds blocks the request entirely

## How this service works

BuiltWith API Overview

## Output

A JSON object with a Results array containing ranked website matches that use the queried technology, including domain names and related technology metadata available in BuiltWith's database.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "limit": {
   "type": "integer",
   "default": 10,
   "maximum": 100,
   "minimum": 1,
   "description": "Maximum number of ranked matches."
  },
  "query": {
   "type": "string",
   "maxLength": 500,
   "minLength": 1,
   "description": "Natural-language technology concept or product query."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "Results": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/builtwith-technology-search-7f2cdadf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.builtwith.com](https://www.zero.xyz/host/api.builtwith.com/llms.txt)
