# 端点反馈

> 为已完成的 v2 端点任务提交反馈。

使用端点反馈来告知 Firecrawl，某个已完成任务的结果是有用、部分有用，还是较差。这用于评估 `scrape`、`parse`、`map` 和 `search` 等任务在端点级别的输出质量。

通用反馈 schema 也可以包含搜索相关字段，但 [搜索反馈](/zh/api-reference/endpoint/search-feedback) 是更推荐的搜索专用入口，因为它绑定到特定的搜索任务 ID，并可标注有价值的来源、缺失的内容、query 建议以及退款处理。

<div id="example-request">
  ### 请求示例
</div>

```bash
curl -X POST "https://api.firecrawl.dev/v2/feedback" \
  -H "Authorization: Bearer $FIRECRAWL_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "endpoint": "scrape",
    "jobId": "550e8400-e29b-41d4-a716-446655440000",
    "rating": "partial",
    "issues": ["missing_markdown"],
    "note": "The pricing table was missing from the markdown output.",
    "url": "https://example.com/pricing"
  }'
```
