# Company Verify — EU VAT, GLEIF LEI & UK Companies House

> Company Verify — EU VAT, GLEIF LEI & UK Companies House is a paid API for AI agents from toolsmith-api.dassad10.workers.dev, paid per call via x402, $0.02/call, status down (last checked 2026-09-15).

Validates EU VAT numbers via VIES, looks up legal entities via GLEIF LEI registry, and queries UK Companies House by number or name in a single API call.

## Facts

- Endpoint: GET https://toolsmith-api.dassad10.workers.dev/t/company/verify
- Price: $0.02/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/company-verify-eu-vat-gleif-lei-uk-companies-house-fc3d60f0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_uG0ApP4kkxAaCJTT5reL8

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 company-verify-eu-vat-gleif-lei-uk-companies-house-fc3d60f0
```

Example prompt: Can you verify the German company with VAT number DE811569869 — I need its legal name, VAT validity, LEI status, jurisdiction, and direct parent?

## When to prefer this

Use this endpoint when you need to verify a business entity's legitimacy or gather official registration data for KYC, compliance, or due diligence purposes. It is ideal when you have a EU VAT number, an LEI code, a UK company number, or a company name and want authoritative registry data from VIES, GLEIF, or UK Companies House in a single call, without needing separate API keys for each registry.

## Known failure modes

- Invalid or malformed VAT number returns a validation error
- Unknown LEI code returns not found
- Company name search returns empty results if no match found
- UK company number not found in Companies House returns 404-style error
- Payment failure via x402 protocol blocks the request
- VIES or GLEIF registry may be temporarily unavailable causing upstream errors

## How this service works

Keyless pay-per-call APIs for AI agents: 30 tools across compliance, trade, safety, web and data. Pay per call with USDC on Base via x402. No account, no API key.

## Output

A JSON object containing the verification results from whichever registries were queried: EU VAT validity (VIES), GLEIF legal entity details (name, LEI status, jurisdiction, company number, direct parent), and/or UK Companies House profile (company name, status, incorporation date, SIC codes, registered address) — depending on which query parameter was supplied.

## 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": {
      "lei": {
       "type": "string",
       "description": "20-char LEI code, alternative to vat"
      },
      "vat": {
       "type": "string",
       "description": "EU VAT number with country prefix, e.g. DE811569869"
      },
      "name": {
       "type": "string",
       "description": "Company name search via GLEIF (and Companies House when country=GB), alternative to vat/lei"
      },
      "number": {
       "type": "string",
       "description": "UK Companies House company number, e.g. 00445790"
      },
      "country": {
       "type": "string",
       "description": "ISO country filter for name search"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "vat": {
   "valid": true,
   "source": "EU VIES (official)",
   "vatNumber": "DE811569869"
  },
  "entities": [
   {
    "lei": "529900...",
    "status": "ACTIVE",
    "legalName": "Example GmbH",
    "jurisdiction": "DE",
    "registeredAs": "HRB 12345"
   }
  ]
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/company-verify-eu-vat-gleif-lei-uk-companies-house-fc3d60f0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from toolsmith-api.dassad10.workers.dev](https://www.zero.xyz/host/toolsmith-api.dassad10.workers.dev/llms.txt)
