# Russian Legal Entity INN Lookup (EGRUL)

> Russian Legal Entity INN Lookup (EGRUL) is a paid API for AI agents from payforapi.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up a Russian legal entity by its INN (taxpayer ID) in the EGRUL state registry and returns name, status, KPP, and address.

## Facts

- Endpoint: GET https://payforapi.com/v1/inn-lookup
- 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/russian-legal-entity-inn-lookup-egrul-a0ff759d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DOyU-A5b0cjWKDQtk3Ynf

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 russian-legal-entity-inn-lookup-egrul-a0ff759d
```

Example prompt: Can you look up the Russian company with INN 7707083893 in the EGRUL registry and tell me its official name, address, and whether it's still active?

## When to prefer this

Use this endpoint when you need authoritative EGRUL data for a Russian legal entity identified by INN — especially for KYC/AML checks, vendor onboarding, invoice verification, or CRM enrichment involving Russian counterparties. Prefer it over manual FNS website lookups or unofficial databases when you need a machine-readable, structured response in an automated workflow.

## Known failure modes

- Invalid INN format (not 10 or 12 digits) returns an error
- INN not found in EGRUL returns ok:false or empty result
- Liquidated or struck-off entities may return status other than ACTIVE
- Network timeout if FNS registry is temporarily unavailable
- Malformed request body missing the required 'inn' field returns a validation error

## How this service works

PAYFORAPI.com — окно между ру-рынком и глобальным x402. Глобальный провайдер: твой эндпоинт платят агенты из СНГ. Ру-провайдер: твой сервис — на мировой витрине. Локализация, продвижение, платежи USDC — наша работа.

## Output

Returns a JSON object with: ok (boolean success flag), inn (the queried INN), kpp (КПП tax registration reason code), name (official Russian company name in Cyrillic), status (e.g. ACTIVE or LIQUIDATED), and address (full registered legal address).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "inn": {
   "type": "string",
   "description": "Russian INN: 10 or 12 digits"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "inn": "7707083893",
  "kpp": "773601001",
  "name": "ПАО СБЕРБАНК",
  "status": "ACTIVE",
  "address": "117997, Москва, ул. Вавилова, д. 19"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/russian-legal-entity-inn-lookup-egrul-a0ff759d/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from payforapi.com](https://www.zero.xyz/host/payforapi.com/llms.txt)
