# Irish Company Lookup (CRO)

> Irish Company Lookup (CRO) is a paid API for AI agents from api.strale.io, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Looks up Irish company registration data from the Companies Registration Office (CRO) by CRO number or company name

## Facts

- Endpoint: POST https://api.strale.io/x402/irish-company-data
- 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/api-strale-io-a0176e6d
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_D77jpjN8Ce0Z6aqEFAPFZ

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 api-strale-io-a0176e6d -d '<json body>'
```

Example prompt: Can you look up the Irish company registration details for 'Accenture Ireland' — search by name and give me their CRO number, registered address, and current status?

## When to prefer this

Use this endpoint when you need to look up Irish company registration data specifically from the CRO (Companies Registration Office). Ideal for due diligence, business verification, or enriching contact/company records with official Irish corporate data. Prefer this over generic web search when you need structured, authoritative registry data for Irish entities.

## Known failure modes

- CRO number not found — company does not exist in the register
- Fuzzy name search returns no matches or ambiguous results
- Invalid CRO number format (must be 5-6 digits)
- Company data temporarily unavailable due to CRO source downtime
- Multiple companies match the fuzzy name, requiring disambiguation

## How this service works

Look up Irish company data from CRO (Companies Registration Office). Accepts CRO number (5-6 digits) or fuzzy company name. SQS: 48/100.

## Output

Returns structured Irish company data from the CRO including company name, CRO registration number, registered address, company status (active/struck off/etc.), legal form, and other registration metadata.

## 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": [],
     "properties": {
      "task": {
       "type": "string",
       "description": "Free-text input — first matching CRO number or company name is used"
      },
      "cro_number": {
       "type": "string",
       "description": "CRO number (5-6 digits)"
      },
      "company_name": {
       "type": "string",
       "description": "Irish company name (fuzzy match)"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/api-strale-io-a0176e6d/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)
