# Croatian Company Data Lookup (Sudski Registar)

> Croatian Company Data Lookup (Sudski Registar) is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054/call, status unknown (last checked 2026-09-14).

Looks up Croatian company information from the Sudski Registar (Ministry of Justice Court Register) using an OIB or MBS identifier, returning company name, status, address, legal form, and VAT number.

## Facts

- Endpoint: POST https://api.strale.io/x402/v2/croatian-company-data
- Price: $0.054/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/croatian-company-data-lookup-sudski-registar-6c6b8b6e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tgqsjE_LrjpVtwsurrXmv

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 croatian-company-data-lookup-sudski-registar-6c6b8b6e -d '<json body>'
```

Example prompt: Can you look up the Croatian company with OIB 12345678901 in the Sudski Registar and tell me their registered name, address, legal form, and whether they're still active?

## When to prefer this

Use this endpoint when you need authoritative, structured company data for Croatian businesses sourced directly from the official Sudski Registar (Ministry of Justice). Ideal for KYC/AML workflows, vendor onboarding, invoice validation, or any compliance use case requiring verified Croatian business identity, legal form, and VAT details. Prefer this over manual web scraping or unofficial sources when accuracy and auditability matter.

## Known failure modes

- Invalid OIB format (not 11 digits) returns a validation error
- Company not found in the register returns an empty or not-found response
- MBS number does not match any registered entity
- Network or upstream Sudski Registar API unavailability causing timeout
- Malformed request missing the required oib field

## How this service works

Look up Croatian company data from the Sudski registar (Ministry of Justice Court Register). Accepts OIB (11 digits) or MBS (court registry number). Returns company name, status, address, legal form, VAT.

## Output

Returns a structured JSON object with the company's MBS, OIB, official company name, current status (e.g. active/inactive), registered address, legal form, and VAT number as recorded in the Croatian Ministry of Justice Court Register.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "oib"
 ],
 "properties": {
  "oib": {
   "type": "string",
   "description": "Croatian OIB (11 digits) or MBS (court registry number)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "mbs": {
  "type": "string"
 },
 "oib": {
  "type": "string"
 },
 "status": {
  "type": "string"
 },
 "address": {
  "type": "string"
 },
 "legal_form": {
  "type": "string"
 },
 "vat_number": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/croatian-company-data-lookup-sudski-registar-6c6b8b6e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.strale.io](https://www.zero.xyz/host/api.strale.io/llms.txt)
