# POST /seo-research/site-audit

**Resource:** [SEO Research](./seo.md)  
**MCP tool:** `seo_run_site_audit`  
**Scopes:** `seo:write`  
**Write operation:** yes

Start a technical site audit via TrustPager SEO. Crawls up to 100 pages and returns issues (missing titles, broken links, slow pages). Async — poll seo_get_run for results. Costs credits.

## Parameters

| Name | In | Type | Required | Description |
|------|----|------|----------|-------------|
| `start_url` | body | string | yes | URL to start crawling from, e.g. https://yoursite.com. |
| `website_id` | body | string | yes | UUID of the website this audit is for. |
| `require_approval` | body | boolean | no | Optional. Set true to route this write into the approval queue for human review instead of executing it immediately (returns 202 + an approval_id). Works even when your key/token has permission to execute directly. |

## Request example

```bash
curl -X POST   "https://api.trustpager.com/functions/v1/api/v1/seo-research/site-audit"   -H "Authorization: Bearer YOUR_API_KEY"   -H "Content-Type: application/json"   -d '{"start_url":"...","website_id":"..."}'
```

---
Base URL: `https://api.trustpager.com/functions/v1/api/v1` — Auth: `Authorization: Bearer YOUR_API_KEY`