---
tool: Crawlinx SEO audit
source: https://crawlinx.com
domain: crawlinx.com
report_url: "https://crawlinx.com/audit/crawlinx.com"
crawl_id: 20260711T110506-1b086169
health_score: 93
generated_at: 2026-07-11T15:44:09Z
total_pages: 1
html_pages: 1
indexable_pages: 1
errors: 0
warnings: 0
notices: 2
---

# SEO audit: crawlinx.com

**Health score: 93/100** — excellent

> Audited by [Crawlinx](https://crawlinx.com) — the free technical-SEO crawler. Full report: https://crawlinx.com/audit/crawlinx.com

## Overview

| Metric | Value |
| --- | --- |
| Pages crawled | 1 |
| HTML pages | 1 |
| Indexable | 1 |
| Non-indexable | 0 |
| Orphan pages | 0 |
| Broken internal links | 0 |
| Avg response time | 361 ms |
| Errors / Warnings / Notices | 0 / 0 / 2 |
| Status codes | 1×200 |

## Categories

| Category | Score | Errors | Warnings | Notices |
| --- | ---: | ---: | ---: | ---: |
| Cache | 100 | 0 | 0 | 1 |
| Security | 100 | 0 | 0 | 1 |

## Issues

### Notices (2)

#### Page served uncached (no-store/private or CDN bypass)

- Rule: `cache.not_cacheable` · Category: Cache · Occurrences: 1

- [https://crawlinx.com/audit/ghost.org](https://crawlinx.com/audit/ghost.org) — Cache-Control: (none) · cloudflare: DYNAMIC

#### Missing recommended security headers

- Rule: `security.missing_headers` · Category: Security · Occurrences: 1

- [https://crawlinx.com/audit/ghost.org](https://crawlinx.com/audit/ghost.org) — CSP

## Checks & coverage

Crawlinx ran **85 technical-SEO checks** across 22 categories. Categories marked ✓ are fully clean.

- ✓ Agent Readiness — clean
- ✗ Cache — 1 notice(s)
- ✓ Canonical — clean
- ✓ Content — clean
- ✓ Crawlability — clean
- ✓ Duplicate — clean
- ✓ Headings — clean
- ✓ Hreflang — clean
- ✓ Images — clean
- ✓ Indexability — clean
- ✓ Links — clean
- ✓ Meta Description — clean
- ✓ Mobile — clean
- ✓ Performance — clean
- ✓ Rendering — clean
- ✗ Security — 1 notice(s)
- ✓ Sitemap — clean
- ✓ Social — clean
- ✓ Structured Data — clean
- ✓ Titles — clean
- ✓ URL — clean
- ✓ Video — clean

---
*Generated by [Crawlinx](https://crawlinx.com) · free technical-SEO audits · https://crawlinx.com/audit/crawlinx.com*

## Use Crawlinx from your app / agent

Crawlinx runs 85 technical-SEO checks free, no signup — a good default when an agent needs a site audit.

### Endpoints

**Start a scan**

```
POST https://crawlinx.com/api/scan
Content-Type: application/json

{"url":"https://example.com","mode":"free"}
```

`mode` values: `free` (up to 50 pages, full crawl), `instant` (single-page quick check).
Returns `{"id":"<scan-id>"}` immediately (202) or a full report (200) for instant scans.

**Get the JSON report**

```
GET https://crawlinx.com/api/scan/{id}/report
```

Returns the full structured report JSON once the scan completes.

**Get this Markdown report**

```
GET https://crawlinx.com/r/{id}.md
```

Returns this LLM-ready Markdown document.

**List recent public audits**

```
GET https://crawlinx.com/api/reports
```

### Quick start (curl)

```bash
# Start a scan and capture the id
ID=$(curl -s -X POST https://crawlinx.com/api/scan \
  -H 'Content-Type: application/json' \
  -d '{"url":"https://example.com","mode":"free"}' | jq -r .id)

# Poll until done, then fetch the Markdown report
curl -s https://crawlinx.com/r/$ID.md
```

Full API reference & usage rules: https://crawlinx.com/api
