> ## Documentation Index
> Fetch the complete documentation index at: https://docs.clawb.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# Examples

## Customer-support agent issuing refunds

Actors:

* Human: support manager
* Agent: AI support bot
* Relying service: your backend refund API

Every refund request calls `/v1/check` with context like:

<CodeGroup>
  ```json JSON theme={null}
  { "action": "refund", "amount": 49.00, "customer_id": "...", "reason": "late delivery" }
  ```
</CodeGroup>

## DevOps agent deploying to production

Context example:

<CodeGroup>
  ```json JSON theme={null}
  { "action": "deploy", "env": "prod", "repo": "api", "commit": "...", "change_risk": "high" }
  ```
</CodeGroup>

## Research agent using paid APIs

Context example:

<CodeGroup>
  ```json JSON theme={null}
  { "action": "search", "provider": "serp", "estimated_cost": 0.10 }
  ```
</CodeGroup>
