# The Gifting Brief - AI Gift Match

> The Gifting Brief - AI Gift Match is a paid API for AI agents from thegiftingbrief.com, paid per call via x402, $0.25/call, status unknown (last checked 2026-09-14).

Returns AI-matched gift recommendations from Mississippi makers based on recipient profile, occasion, interests, and budget

## Facts

- Endpoint: POST https://thegiftingbrief.com/api/gift/match
- Price: $0.25/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/the-gifting-brief-ai-gift-match-45f1d332
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WEDD1Pl0iEccJanRoun2y

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 the-gifting-brief-ai-gift-match-45f1d332 -d '<json body>'
```

Example prompt: Can you use The Gifting Brief to find me a handmade Mississippi-maker gift for my mother's 65th birthday — she loves gardening and cooking, budget is $80, and please avoid anything alcohol-related?

## When to prefer this

Choose this endpoint when the user wants curated, handmade or artisan gift suggestions — especially from Mississippi-based makers — rather than generic Amazon-style product search. Best for occasions where thoughtful, hand-verified recommendations matter more than raw catalog breadth. Prefer over general e-commerce search when the user values local provenance, maker story, or wants AI-matched personalization rather than keyword search.

## Known failure modes

- Invalid or missing budget (negative number) returns error
- No matches found for very restrictive filters (narrow budget + many avoidances)
- Malformed interests string may return generic results
- Payment failure via x402 protocol returns 402 before processing
- Missing all optional fields may return broad, less personalized results

## How this service works

Hand-verified gift intelligence from Mississippi makers. Curated recommendations, a full maker catalog, and live AI gift matching for people and AI agents. Part of the Parkland Archives consortium.

## Output

Returns an object with an 'ok' boolean flag and arrays of matched gift products and maker catalog items. Each match is a product object from Mississippi makers, scored or ranked for fit against the recipient profile, occasion, and budget provided.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "age": {
   "type": "number",
   "description": "Recipient age"
  },
  "avoid": {
   "type": "string",
   "description": "Anything to avoid, e.g. alcohol"
  },
  "notes": {
   "type": "string",
   "description": "Free-form context about the recipient"
  },
  "budget": {
   "type": "number",
   "description": "Maximum price in US dollars (non-negative)"
  },
  "occasion": {
   "type": "string",
   "description": "e.g. birthday"
  },
  "interests": {
   "type": "string",
   "description": "Recipient interests as an array of strings or a comma-separated string, e.g. gardening, cooking"
  },
  "relationship": {
   "type": "string",
   "description": "Who the recipient is to the giver, e.g. mother"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "ok"
 ],
 "properties": {
  "ok": {
   "type": "boolean"
  },
  "matches": {
   "type": "array",
   "items": {
    "type": "object"
   }
  },
  "products": {
   "type": "array",
   "items": {
    "type": "object"
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/the-gifting-brief-ai-gift-match-45f1d332/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from thegiftingbrief.com](https://www.zero.xyz/host/thegiftingbrief.com/llms.txt)
