# Replate Intelligence API – Bundle

> Replate Intelligence API – Bundle is a paid API for AI agents from replate-backend61.vercel.app, paid per call via x402, $0.03/call, status unknown (last checked 2026-09-15).

Returns a bundled intelligence payload for a verified receipt, including basket analysis, pricing, recommendations, behavior signals, and product price data.

## Facts

- Endpoint: POST https://replate-backend61.vercel.app/api/intelligence/bundle
- Price: $0.03/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/replate-intelligence-api-bundle-30889b7c
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_pXc9yXHZIUkwTCk9jSLHk

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 replate-intelligence-api-bundle-30889b7c -d '<json body>'
```

Example prompt: Pull the full intelligence bundle for receipt ID 'rcpt_abc123' — include basket breakdown, price intelligence, and product recommendations.

## When to prefer this

Choose this endpoint when you have a verified receipt ID and need structured commerce intelligence — basket, pricing, recommendations, or behavior data — in a single bundled call. It is ideal for agents orchestrating post-purchase workflows, retail analytics pipelines, or personalization engines that need multiple intelligence signals at once from a single receipt.

## Known failure modes

- Invalid or unverified receiptId returns an error or empty result
- Missing required receiptId field causes a 400/422 validation error
- Requesting an invalid module name in 'include' array may return an error or be silently ignored
- Payment failure (x402) prevents access to the endpoint
- Receipt not found in system returns a 404 or empty response

## How this service works

Paid receipt, personal, and aggregate commerce intelligence for autonomous agents.

## Output

A JSON object containing one or more intelligence modules selected by the caller: basket (itemized purchase breakdown), price (pricing analysis), recommendation (personalized product suggestions), behavior (consumer behavior signals), and productPrice (product-level price data), all derived from the verified receipt.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "receiptId"
 ],
 "properties": {
  "include": {
   "type": "array",
   "description": "Any of basket, price, recommendation, behavior, or productPrice."
  },
  "receiptId": {
   "type": "string",
   "description": "Verified receipt ID."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/replate-intelligence-api-bundle-30889b7c/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from replate-backend61.vercel.app](https://www.zero.xyz/host/replate-backend61.vercel.app/llms.txt)
