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

# POST /verify

> 验证支付签名与数据是否满足要求

## 请求

```json theme={null}
POST /verify
{
  "payload": { "...": "PaymentPayload" },
  "requirements": { "...": "PaymentRequirements" }
}
```

## 响应

```json theme={null}
// 200
{ "success": true, "payer": "0xBuyer" }

// 400
{ "success": false, "error": "invalid_signature" }
```
