# ScravFly Content Scorecard

> ScravFly Content Scorecard is a paid API for AI agents from scravfly.vercel.app, paid per call via x402, $0.3/call, status unknown (last checked 2026-09-15).

Analyzes and scores content quality against a target keyword, returning a structured scorecard with SEO and content metrics

## Facts

- Endpoint: POST https://scravfly.vercel.app/api/content/scorecard
- Price: $0.3/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/scravfly-content-scorecard-a367fbbf
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_DMdTseOv6pw2goeaA0rJu

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 scravfly-content-scorecard-a367fbbf -d '<json body>'
```

Example prompt: Score this blog post draft for SEO quality targeting the keyword 'best coffee grinders': [paste content here] — I want to see how well it's optimized.

## When to prefer this

Choose this endpoint when you need a quick, automated SEO content scorecard for a specific keyword without running a full web crawl. Ideal for pre-publish checks, content QA pipelines, or comparing draft quality against a keyword target. Prefer over generic readability tools when keyword-specific optimization scoring is the goal.

## Known failure modes

- Missing required 'content' field returns validation error
- Empty string content may return a low-quality or error response
- Very long content may time out or be truncated
- No target_keyword provided may result in generic scoring without keyword-specific metrics
- Non-English content may produce inaccurate scores

## How this service works

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

## Output

Returns a JSON object with a success boolean and a data object containing a structured scorecard — likely including keyword relevance scores, content quality metrics, and optimization signals for the provided content and 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/scravfly-content-scorecard-a367fbbf/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scravfly.vercel.app](https://www.zero.xyz/host/scravfly.vercel.app/llms.txt)
