# GitHub Repo SEO Audit

> GitHub Repo SEO Audit is a paid API for AI agents from x402.charliemorrison.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-14).

Audits a GitHub repository for SEO quality, returning a letter grade, numeric score, and a list of recommended fixes.

## Facts

- Endpoint: GET https://x402.charliemorrison.dev/audit
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/github-repo-seo-audit-5568b0d6
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_kWmTphnqS3JVU-kSulZo9

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 github-repo-seo-audit-5568b0d6
```

Example prompt: Can you run an SEO audit on the GitHub repo owned by 'charliemorrison' named 'agent-web-reader' and tell me the grade, score, and what fixes I should make?

## When to prefer this

Use this endpoint when you need a quick, pay-per-call SEO quality assessment of a specific public GitHub repository without setting up an API key. Ideal for agents automating open source project health checks or developer workflow pipelines that need SEO scoring on demand.

## Known failure modes

- Missing 'owner' or 'repo' query parameters returns a 400 error
- Payment not settled via x402 returns a 402 Payment Required response
- Non-existent or private GitHub repository may return an error or empty result
- Network timeout fetching GitHub repository data

## How this service works

GitHub repo discoverability & SEO audit: scores a repo's README, description, topics, homepage and metadata and returns a 0-100 score, a grade, and fixes. Input: owner, repo.

## Output

Returns a JSON object with a letter grade (e.g. 'A'), a numeric score (0-100), and an array of fix recommendations. Example: {"grade": "A", "score": 100, "fixes": []}

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "owner",
      "repo"
     ],
     "properties": {
      "repo": {
       "type": "string"
      },
      "owner": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "properties": {
      "fixes": {
       "type": "array",
       "items": {
        "type": "string"
       }
      },
      "grade": {
       "type": "string"
      },
      "score": {
       "type": "number"
      }
     }
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "fixes": [],
  "grade": "A",
  "score": 100
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/github-repo-seo-audit-5568b0d6/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.charliemorrison.dev](https://www.zero.xyz/host/x402.charliemorrison.dev/llms.txt)
