Ntriq X402 Screenshot Data

Convert screenshots into structured data — extract text, UI layout, tables, or charts from any screen image. Pay $0.02 USDC via x402.

Audits

Pass

Install

openclaw skills install ntriq-x402-screenshot-data

Screenshot to Data (x402)

Turn 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).

How to Call

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"
}

Parameters

ParameterTypeRequiredDescription
image_urlstring✅ (or base64)URL of screenshot
image_base64string✅ (or url)Base64-encoded screenshot
extract_typestringfull (default), text, layout, data
languagestringOutput language (default: en)

extract_type Options

ValueWhat it does
fullAll text, UI elements, layout, data as JSON
textAll visible text in reading order
layoutNavigation, buttons, forms, content areas
dataTables, charts, numbers, structured info

Example Response

{
  "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}
  }
}

Payment

  • Price: $0.02 USDC per call
  • Network: Base mainnet (EIP-3009 gasless)
  • Protocol: x402
curl https://x402.ntriq.co.kr/services