$2 per result
Mobile UX Auditor
Check touch targets, viewport, font sizes, and mobile usability.
Who it is for
Anyone whose traffic is mostly mobile and whose testing is mostly desktop.
What you would use it for
- Check touch target sizes against the usual minimum, and find the ones that are too small or too close together.
- Confirm the viewport meta tag is set correctly and the page does not scroll horizontally.
- Catch font sizes that are unreadable on a phone.
- Audit a set of landing pages before a mobile campaign spends money on them.
What you get back
One JSON record per page checked. These are the actual fields returned by the most recent successful run — read from the live catalogue, not a documented ideal.
| Field | Sample shape |
|---|---|
actor | string — artifact-machine-mobile-ux-auditor |
actorVersion | string — 0.1.0 |
auditedAt | string — 2026-07-29T05:04:52.970Z |
url | string — https://neighbornest.kids/ |
score | number — 87 |
viewport | object (4 keys) |
touchTargets | object (5 keys) |
scrolling | object (3 keys) |
mobilePatterns | object (8 keys) |
issues | array (2) |
Sample output
Trimmed from a real run.
{
"actor": "artifact-machine-mobile-ux-auditor",
"actorVersion": "0.1.0",
"auditedAt": "2026-07-29T05:04:52.970Z",
"url": "https://neighbornest.kids/",
"score": 87,
"viewport": {
"score": 100,
"hasViewport": true,
"hasWidthDeviceWidth": true,
"disablesZoom": false
},
"touchTargets": {
"score": 86,
"total": 13,
"tooSmall": 2,
"tooClose": 2,
"minSize": 44
},
"scrolling": {
"score": 60,
"hasHorizontalScroll": true,
"overflowCausers": 0
},
"mobilePatterns": {
"score": 95,
Pricing
$2 per result. Pay-per-event through Apify — no subscription, and a run that returns nothing costs nothing.
Calling it from code
Any HTTP client works. Replace <TOKEN> with your Apify API token.
curl -X POST "https://api.apify.com/v2/acts/artifact-machine~artifact-machine-mobile-ux-auditor/run-sync-get-dataset-items?token=<TOKEN>" \
-H "Content-Type: application/json" \
-d '{"startUrls":[{"url":"https://example.com"}]}'
Questions
Is this the same as a Core Web Vitals check?
No. Web Vitals measure loading, interactivity and layout stability. This looks at whether the page is usable with a thumb — target sizes, spacing, viewport handling and legibility. A page can pass Web Vitals and still be awkward to tap.
Other tools
Schema Audit - JSON-LD Structured Data Validator · Security Headers Checker · Sitemap Health Audit - XML Sitemap Validator · Tech Stack Analyzer - Detect Website Technologies
Details read from the live Apify catalogue on 2026-07-29.