# UK Charity Lookup via Charity Commission

> UK Charity Lookup via Charity Commission is a paid API for AI agents from api.strale.io, paid per call via x402, $0.054001/call, status unknown (last checked 2026-09-14).

Look up UK registered charities by registration number or name, returning status, income, and activities from the Charity Commission API.

## Facts

- Endpoint: GET https://api.strale.io/x402/charity-lookup-uk
- Price: $0.054001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/api-strale-io-c7b4ecf3
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_FoE_8NLDLAcZAmVmubmOp

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-c7b4ecf3
```

Example prompt: Can you look up the UK charity 'Cancer Research UK' on the Charity Commission and tell me its registration status, income, and what activities it carries out?

## When to prefer this

Use this endpoint when you need authoritative UK charity data — registration status, income, or activities — especially for compliance, due diligence, or verifying a charity's legitimacy. Prefer this over general web search when you need structured, official Charity Commission data.

## Known failure modes

- Charity not found for given registration number or name — returns empty or 404-style response
- Invalid charity number format — query returns no results
- Name search too ambiguous — may return multiple or no matching charities
- Charity Commission API unavailable — upstream timeout or error
- Non-UK charities not found — only covers England and Wales Charity Commission register

## How this service works

Look up UK charities via the Charity Commission API. Search by registration number or name. Returns status, income, activities.

## Output

Returns the charity's official name, registration number, current status (active/removed/etc.), annual income figures, and a description of its activities as recorded by the UK Charity Commission.

## Example request

```json
{
 "charity_number": "207994"
}
```

## 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",
     "properties": {
      "name": {
       "type": "string"
      },
      "charity_number": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  }
 }
}
```

## More

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