# AgentsTools Entity Search — Company Name Disambiguator

> AgentsTools Entity Search — Company Name Disambiguator is a paid API for AI agents from api.agentstools.dev, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Fuzzy legal-name search that returns ranked company candidates with cross-linked identifiers (Wikidata QID, GLEIF LEI, SEC CIK, ticker), country, and match scores.

## Facts

- Endpoint: GET https://api.agentstools.dev/entity/search
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/agentstools-entity-search-company-name-disambiguator-0e2f201f
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_nuzXdpg0OckBaRgqgAAy4

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 agentstools-entity-search-company-name-disambiguator-0e2f201f
```

Example prompt: Can you search for 'Siemens AG' as a company name — limit to 3 candidates, filtering to Germany — so I can see its LEI, SEC CIK, Wikidata QID, ticker, and match score before I resolve the full entity?

## When to prefer this

Use this endpoint as a cheap first step before calling a full entity resolution endpoint — when you have only a company name (possibly approximate) and need to identify the correct legal entity and obtain its canonical cross-system identifiers (LEI, CIK, QID, ticker). Prefer this over direct entity resolution when the exact legal name is uncertain or when disambiguating between multiple companies with similar names.

## Known failure modes

- No candidates found if the name is too obscure or misspelled beyond fuzzy tolerance
- Ambiguous results if a very generic name matches many companies (e.g. 'Global Holdings')
- Country filter too restrictive may exclude correct matches
- Rate limiting or payment failure for x402-gated access
- Limit parameter out of range (must be 1–10) returns validation error

## How this service works

Disambiguate a company by name: fuzzy legal-name search returning ranked candidates, each with the ids known for it (Wikidata QID, GLEIF LEI, SEC CIK, ticker), country and a match score. Cheaper first step before entity/resolve.

## Output

A ranked list of up to 10 company candidates matching the fuzzy name query, each containing known cross-linked identifiers (Wikidata QID, GLEIF LEI, SEC CIK, ticker symbol where available), the company's country, and a numeric match score indicating confidence in the match.

## 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",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "name"
     ],
     "properties": {
      "name": {
       "type": "string",
       "description": "Company name to search for"
      },
      "limit": {
       "type": "integer",
       "maximum": 10,
       "minimum": 1,
       "description": "Max candidates to return, default 5"
      },
      "country": {
       "type": "string",
       "description": "Optional country filter, e.g. US"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/agentstools-entity-search-company-name-disambiguator-0e2f201f/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.agentstools.dev](https://www.zero.xyz/host/api.agentstools.dev/llms.txt)
