Workflow
Asynchronous agent research with public SQL
A Scry workflow for agents that inspect schema, run bounded SQL, preserve records, and return evidence with sources attached.
Answer shape
Scry lets an agent turn a broad research question into an inspectable sequence: schema, bounded source-native query, result record, and follow-up query.
Steps
SQL
Treat this as a starting query. Inspect the live schema before widening it.
SELECT hn_id, title, original_author, original_timestamp, uri FROM hackernews.items WHERE title != '' ORDER BY hn_id DESC LIMIT 20;
Schema
POST /v1/scry/query The synchronous SQL-over-HTTPS endpoint for Scry: send bounded read-only SQL (ClickHouse dialect) as text and receive one JSON document or a typed HTTP error within the advertised execution ceiling.hackernews.items The enabled source-native Hacker News relation: public IDs, authors, timestamps, scores, payload text, and links.