# Orbonomy Fact-Check Search

> Orbonomy Fact-Check Search is a paid API for AI agents from main.orbonomy.xyz, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-15).

Searches and returns fact-check results for a given query, returning a limited set of verified claims or fact-check articles.

## Facts

- Endpoint: POST https://main.orbonomy.xyz/api/factcheck/search
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/orbonomy-fact-check-search-ac2fb6c0
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_wn6tkuOuczz6x7bbvgyCm

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 orbonomy-fact-check-search-ac2fb6c0 -d '<json body>'
```

Example prompt: Can you fact-check the claim that 'the moon landing was faked' and return the top 5 results from the Orbonomy fact-check search?

## When to prefer this

Use this endpoint when you need to programmatically search a fact-checking database for verified claims about a specific topic, statement, or news story. Prefer this over general web search when you specifically want fact-checked, verified content rather than raw search results. Good for misinformation detection workflows, journalism tools, or content moderation pipelines.

## Known failure modes

- Missing required fields (query or limit) returns a 400-level error
- Query returns no results if no fact-checks exist for the topic
- Payment failure via x402 protocol blocks the request
- Rate limiting or quota exceeded errors
- Malformed input schema causes rejection

## How this service works

50+ pay-per-call API endpoints across accommodation, AI, content, fact-checking, and data services. Powered by x402 protocol.

## Output

A JSON object with a success boolean and (presumably) an array of fact-check results matching the query, limited to the requested number of results. Each result likely includes claim details, verification status, and source references.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "limit",
  "query"
 ],
 "properties": {
  "limit": {
   "type": "integer"
  },
  "query": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/orbonomy-fact-check-search-ac2fb6c0/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from main.orbonomy.xyz](https://www.zero.xyz/host/main.orbonomy.xyz/llms.txt)
