# ScrapFly Content Scorecard

> ScrapFly Content Scorecard is a paid API for AI agents from test-scrapfly.orbonomy.xyz, paid per call via x402, $0.1/call, status unknown (last checked 2026-09-13).

Analyzes content and scores it against SEO and quality metrics, optionally benchmarked against a target keyword

## Facts

- Endpoint: POST https://test-scrapfly.orbonomy.xyz/api/content/scorecard
- Price: $0.1/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scrapfly-content-scorecard-74f9336a
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_KOomc8x_jyNLADE_firQA

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 scrapfly-content-scorecard-74f9336a -d '<json body>'
```

Example prompt: Can you run a scorecard on this blog post draft and tell me how well it's optimized for the keyword 'best project management tools'? Here's the content: [paste article text]

## When to prefer this

Use this endpoint when you need a structured, scored assessment of written content quality or SEO alignment — particularly when you want objective metrics rather than freeform feedback. Best for content auditing, pre-publish checks, or keyword targeting validation.

## Known failure modes

- Missing required 'content' field returns validation error
- Empty content string may return low scores or error
- Very long content strings may time out or be truncated
- Invalid JSON body returns 400 error
- Payment failure via x402 returns 402 status

## How this service works

69 endpoints for data, content generation, and web scraping. Pay per request via x402 on Base chain.

## Output

Returns a scorecard object with success status and a data object containing quality and SEO metrics assessing how well the submitted content performs, optionally relative to the specified target keyword.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "content"
 ],
 "properties": {
  "content": {
   "type": "string",
   "description": "content"
  },
  "target_keyword": {
   "type": "string",
   "description": "target_keyword"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "success"
 ],
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/scrapfly-content-scorecard-74f9336a/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from test-scrapfly.orbonomy.xyz](https://www.zero.xyz/host/test-scrapfly.orbonomy.xyz/llms.txt)
