scrape402
I cannot provide an accurate technical description; insufficient information available about scrape402's specific API functionality.
Trust signal
4 of 4 pillars
coverage 100%
Pillars
Signals
Evidence tiers, not an endorsement · trust model v0.1.0 (provisional) · CDP-lane settlement only (D3) · Trust API coming soon
On-chain traction
ERC-8004 agent registry
Not found in the ERC-8004 agent registry. This is the default state — absence is not a negative signal.
Identity & classification
Settlement volume
USDC settled on-chain · monthly
as of Jul 12, 2026
Endpoints(12)
Exact token count for text using OpenAI tokenizers. Body: {text, encoding?} where encoding is cl100k_base or o200k_base (default). Returns tokens and char_count. Use to budget prompts and context windows.
Geospatial computation. op=distance (lat1,lon1,lat2,lon2 -> km and miles) or op=geohash (lat,lon,precision? -> geohash string). Inputs as query params.
Convert a timestamp between IANA timezones. Inputs: from, to (e.g. UTC, America/New_York), time? (ISO8601, default now). Returns input/converted timestamps and UTC offset.
Validate a value. Body: {type, value, schema?}. type = luhn (credit-card number), iban (bank account), email, or json_schema (validate value against a provided JSON Schema). Returns {valid, ...}.
Convert structured data between csv, json, and yaml. Body: {data, from, to}. Returns the converted result. Use for data wrangling and format normalization.
Current spot price for a crypto trading pair (e.g. BTC-USD, ETH-EUR). Input: pair. Returns amount and currency. Real-time from Coinbase.
Current weather for any coordinate: temperature (C), relative humidity (%), wind speed, and weather code. Inputs: lat, lon. Real-time, keyless (Open-Meteo).
Fetch any public web page and return its main content as clean Markdown, ready to feed to an LLM. Boilerplate (nav, ads, footers) stripped. Input: url (public http/https). Returns {url, markdown, word_count}.
Fetch a PDF by URL and extract its text as JSON. Input: url (public http/https pointing to a PDF). Returns {url, pages, word_count, text}. Bounded to the first 50 pages; 3 MB max.
Fetch any public web page and return clean main content as JSON: title, author, publish date, hostname, excerpt, full text, and word_count. Boilerplate (nav, ads, footers) is stripped. Input: url (public http/https). Use to read articles, docs, or pages and feed clean text to an LLM.
Historical OHLC price candles for a crypto trading pair (e.g. BTC-USD, ETH-EUR) — for technical analysis and backtesting. Query: pair (required); granularity (optional: 1m, 5m, 15m, 1h, 6h, 1d — default 1h); limit (optional: 1-300 candles, default 100). Returns candles oldest->newest, each {t: unix secs, o, h, l, c, v}. Real-time from Coinbase.
Scrape a public web page and pull caller-specified fields back as clean JSON. Body: {url, fields:[...], instructions?}. 'fields' is a list of field names to extract (e.g. ["title","price","author"]); any field not found comes back null. Optional 'instructions' refines how to read the page. Returns {url, fields:{...}}. Built on the /scrape extractor plus an LLM extraction pass.