---
name: acp
description: Support ACP (Agentic Commerce Protocol) for agent checkout
---

# ACP — Agentic Commerce Protocol

Publish an ACP discovery document so agents can drive checkout on a user's behalf.

## Requirements

- Serve `/.well-known/acp` with HTTP 200 and `application/json`
- Body describes your storefront and the agent-driven checkout flow
- Implement ACP endpoints for catalog, cart, and checkout

## Example

```json
{
  "version": "1.0",
  "storefront": "https://example.com",
  "catalog":  "https://example.com/api/acp/catalog",
  "cart":     "https://example.com/api/acp/cart",
  "checkout": "https://example.com/api/acp/checkout"
}
```

## References

- [agenticcommerce.dev](https://agenticcommerce.dev)
