# schema.nsgoods.org Extractability Scorer

> schema.nsgoods.org Extractability Scorer is a paid API for AI agents from schema.nsgoods.org, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Returns a signed extractability score (0-100), grade, breakdown of checks, and actionable fixes for any public URL's AI/answer-engine readability

## Facts

- Endpoint: GET https://schema.nsgoods.org/extractability
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/schema-nsgoods-org-extractability-scorer-32f79e89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LYWmmyi7D6RyaVPaH1Wxh

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 schema-nsgoods-org-extractability-scorer-32f79e89
```

Example prompt: Can you check how extractable this page is for AI answer engines — score it and tell me what's broken and how to fix it: https://example.com/blog/my-article

## When to prefer this

Use this endpoint when you need a structured, scored audit of a specific URL's AI/answer-engine extractability — especially when you want actionable fixes alongside the score. Prefer this over generic SEO tools when the goal is optimizing for LLM citation and answer-engine inclusion rather than traditional search ranking.

## Known failure modes

- Non-public or private URLs may return an error or zero score
- Invalid or malformed URLs return a validation error
- Paywalled or access-restricted pages may be un-fetchable, resulting in incomplete scoring
- Timeout if the target URL is slow to respond
- Payment not provided or insufficient USDC balance returns HTTP 402

## How this service works

Signed extractability score (0-100) + breakdown + fixes for a URL. Free preview: GET /extractability/preview

## Output

Returns a JSON object containing: the target URL, an integer score from 0 to 100, a letter grade, an array of individual checks (pass/fail with details), and an array of recommended fixes to improve extractability. The response is cryptographically signed.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "url"
     ],
     "properties": {
      "url": {
       "type": "string",
       "description": "Public http(s) URL to score for AI/answer-engine extractability."
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "target",
      "score",
      "checks"
     ],
     "properties": {
      "fixes": {
       "type": "array"
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "integer"
      },
      "checks": {
       "type": "array"
      },
      "target": {
       "type": "string"
      }
     }
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/schema-nsgoods-org-extractability-scorer-32f79e89/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from schema.nsgoods.org](https://www.zero.xyz/host/schema.nsgoods.org/llms.txt)
