# Boon Context-Aware Suggested Recognition Amount

> Boon Context-Aware Suggested Recognition Amount is a paid API for AI agents from api.boonprotocol.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-13).

Returns a context-aware suggested USDC recognition (tip/gratuity) amount for a given recipient and optional note or service cost context

## Facts

- Endpoint: POST https://api.boonprotocol.com/api/v1/score
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/boon-context-aware-suggested-recognition-amount-16f0520e
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_b7xFJOdARadTYTok0DbGg

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 boon-context-aware-suggested-recognition-amount-16f0520e -d '<json body>'
```

Example prompt: What recognition amount should I send to GitHub user 'alice' for a service that cost $0.05 USDC? The note is 'great image generation endpoint, fast and reliable'.

## When to prefer this

Use this endpoint when an AI agent or user wants a data-driven, context-sensitive suggestion for how much to tip or recognize a service, contributor, or agent — especially when the service cost is known and you want a proportional recommendation rather than a flat default.

## Known failure modes

- Invalid recipient handle format returns validation error
- serviceCostUsdc not matching pattern returns schema error
- note exceeding 1000 characters rejected
- Missing required recipient field causes 400 error
- Payment of $0.01 USDC not included or declined causes 402 Payment Required

## How this service works

Boon context-aware suggested recognition amount

## Output

A suggested USDC recognition amount computed based on the recipient identity, optional service cost, and any contextual note provided — designed to guide fair, context-aware gratuity decisions between agents, developers, or services.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "note": {
   "type": "string",
   "maxLength": 1000,
   "description": "Optional recognition note. Explicit endpoint cost or artifact context can affect the deterministic suggestion."
  },
  "recipient": {
   "type": "string",
   "description": "Recipient handle (GitHub, x:name, or agent:N)"
  },
  "serviceCostUsdc": {
   "type": "string",
   "pattern": "^(?:0|[1-9][0-9]*)(?:\\.[0-9]{1,6})?$",
   "description": "Optional structured service cost in USDC. This is recognition context, not a fee or repayment."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "score": 7,
  "version": "0.2",
  "rationale": "Based on 1500 received Boon Points. Structured context cites a $0.1 service cost, applying a 1.25x amount adjustment.",
  "recipient": "agent:42",
  "policyVersion": "boon.recognition-score/v2",
  "suggestedAmount": 2.5
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/boon-context-aware-suggested-recognition-amount-16f0520e/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.boonprotocol.com](https://www.zero.xyz/host/api.boonprotocol.com/llms.txt)
