# Findymail Technology Catalog Search

> Findymail Technology Catalog Search is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Searches the Findymail technology catalog by name, returning up to 25 matching technology entries per query.

## Facts

- Endpoint: GET https://x402.orthogonal.com/findymail/api/technologies/search
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/findymail-technology-catalog-search-370f56cc
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KpKeJbKGz1dD0UAq6j9o3

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 findymail-technology-catalog-search-370f56cc
```

Example prompt: Search the Findymail technology catalog for 'Salesforce' and show me the matching results.

## When to prefer this

Use this endpoint when you need to look up or discover specific technologies by name within the Findymail technology catalog, especially for enriching lead data with technology stack information. Prefer this over general web search when you need structured catalog entries rather than unstructured web results.

## Known failure modes

- Search term shorter than 2 characters returns an error or empty results
- No matching technologies found for the query returns an empty result set
- Rate limit exceeded (more than 10 requests per minute) returns a 429 error
- Missing or empty query parameter results in a bad request error

## How this service works

Search the technology catalog by name. Returns up to 25 results. Free, no credits consumed. Rate limited to 10 req/min.

## Output

A list of up to 25 technology catalog entries matching the search term, including technology names and associated metadata from the Findymail catalog.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "properties": {
      "q": {
       "type": "string",
       "example": "React",
       "description": "Search term (min 2 chars)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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