# Bolt Animal Facts

> Bolt Animal Facts is a paid API for AI agents from datault.orbonomy.xyz, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-14).

Returns a specified number of animal facts for a given animal species

## Facts

- Endpoint: POST https://datault.orbonomy.xyz/api/animal-facts
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/bolt-animal-facts-828a4dce
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_BUXHml0msbtF4_gaQVqXt

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 bolt-animal-facts-828a4dce -d '<json body>'
```

Example prompt: Give me 5 interesting facts about elephants using the Bolt animal facts tool.

## When to prefer this

Use this endpoint when you need quick, structured animal fact lookups with per-request micropayment pricing via x402/USDC, and you want to specify both the animal species and the number of facts returned in a single call.

## Known failure modes

- Unknown or unsupported animal name returns empty or error data
- Count value of 0 or negative integer may return empty results
- Network timeout from the orbonomy.xyz host
- Payment failure via x402 USDC results in 402 response and no data returned
- Very large count values may return partial results or fail

## How this service works

Utility toolkit for AI agents. 54 endpoints — tools, data, and AI processing. Pay per request in USDC via x402.

## Output

A JSON object with a success boolean and a data object containing the requested number of facts about the specified animal.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "count": {
   "type": "integer"
  },
  "animal": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/bolt-animal-facts-828a4dce/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from datault.orbonomy.xyz](https://www.zero.xyz/host/datault.orbonomy.xyz/llms.txt)
