API REFERENCE
Scans
GET https://weavn.app/api/v1/scans
List all scans made with your API key. Supports pagination.
Query parameters
Response
{ "scans": [ { "id": "c4f1a2b3-...", "url": "https://example.com", "score": 54, "verdict": "Needs Work", "scanned_at": "2026-06-02T12:00:00Z" } ], "total": 47, "limit": 20, "offset": 0}
GET https://weavn.app/api/v1/scans/:id
Retrieve a single scan by ID. Returns the same shape as POST /api/v1/scan. Returns 404 if the scan does not exist or belongs to a different API key.