# Tomba Company Finder by Orthogonal

> Tomba Company Finder by Orthogonal is a paid API for AI agents from x402.orthogonal.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up company information (profile, industry, size, etc.) by domain name.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/companies/find
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-company-finder-by-orthogonal-78cb4340
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_vVMyQtLUdgHQqL01ziiJv

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 tomba-company-finder-by-orthogonal-78cb4340
```

Example prompt: Can you pull up the company information for stripe.com — I want to know their industry, size, and any other business details you can find?

## When to prefer this

Use this endpoint when you need to enrich a domain or email address with firmographic company data — especially for B2B lead qualification, CRM enrichment, or competitor research. Prefer this over generic web scraping when you need structured, clean company metadata rather than raw page content.

## Known failure modes

- Domain not found in database — returns empty or null result
- Invalid or malformed domain input — returns error
- Domain belongs to a personal/generic email provider (e.g. gmail.com) — no company match
- Rate limiting or payment failure — request rejected
- Private or obscure company with no indexed data — sparse result

## How this service works

Get company information from a domain.

## Output

Returns structured company profile data associated with the given domain, including fields such as company name, description, industry, employee count, location, and other firmographic details sourced from the Tomba database.

## 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": {
      "domain": {
       "type": "string",
       "description": "Domain name (e.g., stripe.com)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/tomba-company-finder-by-orthogonal-78cb4340/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)
