# Tomba Employee Location Distribution

> Tomba Employee Location Distribution 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-14).

Returns the geographic distribution of employees for a given company domain, showing where a company's workforce is located.

## Facts

- Endpoint: GET https://x402.orthogonal.com/tomba/v1/location
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/tomba-employee-location-distribution-bbf879f4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_jQPE8ZJJRZTUBL5sH67NJ

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-employee-location-distribution-bbf879f4
```

Example prompt: Can you pull the employee location distribution for stripe.com so I can see which countries and regions most of their workforce is based in?

## When to prefer this

Use this endpoint when you need geographic workforce intelligence for a specific company identified by its domain name — ideal for competitive analysis, market research, due diligence, or sales prospecting where understanding where a company's employees are located matters. Prefer this over general company lookup APIs when geographic distribution is the specific data point needed.

## Known failure modes

- Unknown or unrecognized domain returns empty results or 404
- Domain with no indexed employee data returns empty distribution
- Misspelled domain (e.g. 'stirpe.com') returns no results
- Rate limiting or payment failure returns 402 or 429 error
- Domain with very small company may have insufficient data for meaningful distribution

## How this service works

Get employee location distribution for a domain.

## Output

Returns a breakdown of employee locations for the specified company domain, typically including country or region names and the proportion or count of employees in each location, helping map out where the company's workforce is geographically distributed.

## 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-employee-location-distribution-bbf879f4/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)
