# ScrapFly Content Scorecard API

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

Analyzes content and scores it against a target keyword for SEO or content quality assessment

## Facts

- Endpoint: POST https://scrapifrivly.orbonomy.xyz/api/content/scorecard
- Price: $0.3/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-api-50116e53
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5wxt9en4XeppBOAvTDH11

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-api-50116e53 -d '<json body>'
```

Example prompt: Score this blog post draft for the keyword 'best espresso machines' and give me a content quality scorecard: 'Choosing the right espresso machine can transform your morning routine. Look for machines with 15 bar pressure, a built-in grinder, and easy milk frothing. Our top picks include the Breville Barista Express and the De'Longhi Dedica.'

## When to prefer this

Use this endpoint when you need a programmatic SEO or content quality score for a specific piece of text relative to a target keyword — particularly in content creation pipelines, editorial workflows, or automated SEO audits where per-request payment via crypto (USDC on Base) is acceptable.

## Known failure modes

- Missing required 'content' field returns error response with success: false
- Empty content string may yield low or invalid scores
- Very long content may hit request size limits
- Network or payment failure (x402 on Base chain) may cause request to fail
- Invalid or missing keyword may result in generic scoring without keyword-specific analysis

## 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 the content scorecard — likely including keyword relevance scores, 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/scrapfly-content-scorecard-api-50116e53/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from scrapifrivly.orbonomy.xyz](https://www.zero.xyz/host/scrapifrivly.orbonomy.xyz/llms.txt)
