# Strale Canadian Company Data

> Strale Canadian Company Data is a paid API for AI agents from api.strale.io, paid per call via x402, $0.864/call, status unknown (last checked 2026-09-15).

Look up federal Canadian company registration data from Corporations Canada by corporation number, business number, or company name.

## Facts

- Endpoint: GET https://api.strale.io/x402/v2/canadian-company-data
- Price: $0.864/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/strale-canadian-company-data-7823dad5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_a4KcDI7U52nXTCI01Zxpk

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 strale-canadian-company-data-7823dad5
```

Example prompt: Can you look up the federal registration details for Shopify Inc. in Corporations Canada — I need to know their corporation number, current status, and incorporation date?

## When to prefer this

Use this endpoint when you need authoritative federal Canadian company registration data — active/dissolved status, incorporation dates, registered addresses, director listings — sourced directly from Corporations Canada. Prefer this over general web search when you need structured, verifiable corporate registry data with a cryptographic audit trail. Note this covers federally incorporated companies; provincially incorporated companies may not appear.

## Known failure modes

- Company name not found in Corporations Canada search — may require more specific or exact name
- Corporation number not recognized — older corporations may have fewer than 7 digits, verify format
- Provincial-only companies not found — this registry covers federal incorporations only
- Ambiguous company name returns multiple candidates — agent may need to disambiguate
- Rate limiting or payment failure via x402 micropayment protocol
- Network timeout reaching the Corporations Canada upstream source

## How this service works

Look up Canadian company data from Corporations Canada. Accepts corporation number or fuzzy company name.

## Output

Returns structured company registration data from Corporations Canada including corporation number, business number, company name, incorporation date, corporate status (active/dissolved), registered office address, and director/officer information, along with a cryptographic audit record for the call.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "task": {
   "type": "string",
   "description": "Free-text alias — corporation number or company name"
  },
  "company_name": {
   "type": "string",
   "description": "Company name (resolved via the Corporations Canada site search)"
  },
  "corporation_number": {
   "type": "string",
   "description": "Federal corporation number (older corporations have fewer than 7 digits) or 9-digit business number"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "status": {
  "type": "string"
 },
 "company_name": {
  "type": "string"
 },
 "name_history": {
  "type": "array"
 },
 "business_type": {
  "type": "string"
 },
 "business_number": {
  "type": [
   "string",
   "null"
  ]
 },
 "director_limits": {
  "type": [
   "object",
   "null"
  ]
 },
 "ubo_availability": {
  "type": "string"
 },
 "corporation_number": {
  "type": "string"
 },
 "registration_number": {
  "type": "string"
 },
 "tier_2_available_reason": {
  "type": "string"
 },
 "ubo_availability_reason": {
  "type": "string"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/strale-canadian-company-data-7823dad5/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)
