Install
openclaw skills install ntriq-x402-screenshot-dataConvert screenshots into structured data — extract text, UI layout, tables, or charts from any screen image. Pay $0.02 USDC via x402.
openclaw skills install ntriq-x402-screenshot-dataTurn any screenshot into structured data. Extract all visible text, analyze UI layout, pull tables and charts, or get full structured JSON. Useful for agents that need to process screen captures, dashboard screenshots, or web page images. Pay $0.02 USDC per call via x402 (Base mainnet).
POST https://x402.ntriq.co.kr/screenshot-data
Content-Type: application/json
X-PAYMENT: <x402-payment-header>
{
"image_url": "https://example.com/screenshot.png",
"extract_type": "data"
}
| Parameter | Type | Required | Description |
|---|---|---|---|
image_url | string | ✅ (or base64) | URL of screenshot |
image_base64 | string | ✅ (or url) | Base64-encoded screenshot |
extract_type | string | ❌ | full (default), text, layout, data |
language | string | ❌ | Output language (default: en) |
| Value | What it does |
|---|---|
full | All text, UI elements, layout, data as JSON |
text | All visible text in reading order |
layout | Navigation, buttons, forms, content areas |
data | Tables, charts, numbers, structured info |
{
"status": "ok",
"extract_type": "data",
"analysis": {
"tables": [
{"headers": ["Month", "Revenue", "Users"], "rows": [["Jan", "$12,400", "340"], ["Feb", "$15,200", "412"]]}
],
"charts": [{"type": "bar", "title": "Monthly Revenue", "trend": "increasing"}],
"key_metrics": {"total_revenue": "$27,600", "total_users": 752}
}
}
curl https://x402.ntriq.co.kr/services