$0.05
per call · USD Coin on Base
Check PostgreSQL SQL immediately before execution to prevent destructive or unsafe database changes by AI agents and automated systems.
Endpoint
POST https://api.vrsai.tech/v1/capabilities/sql_preflight4
Calls / 30d
3
Unique payers / 30d
Sep 3
Last called
exact
Payment scheme
Call this service
import { wrapFetchWithPayment } from "@x402/fetch";
import { privateKeyToAccount } from "viem/accounts";
const account = privateKeyToAccount(process.env.PRIVATE_KEY);
const fetchWithPay = wrapFetchWithPayment(fetch, account);
const res = await fetchWithPay("https://api.vrsai.tech/v1/capabilities/sql_preflight", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"context": {
"environment": "production",
"protected_relations": [
"customers"
]
},
"sql": "DELETE FROM customers;"
}),
});
const data = await res.json();curl -X POST \
"https://api.vrsai.tech/v1/capabilities/sql_preflight" \
-H "Content-Type: application/json" \
-d '{"context":{"environment":"production","protected_relations":["customers"]},"sql":"DELETE FROM customers;"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"checks": [
{
"id": "parse_validity",
"status": "PASS"
},
{
"evidence": {
"count": 1
},
"id": "statement_count",
"status": "PASS"
},
{
"id": "unbounded_delete",
"reason_code": "DELETE_WITHOUT_WHERE",
"statement_index": 0,
"status": "BLOCK"
},
{
"evidence": {
"relations": [
{
"name": "customers"
}
]
},
"id": "protected_relation_mutation",
"reason_code": "PROTECTED_RELATION_MUTATION",
"statement_index": 0,
"status": "BLOCK"
},
{
"id": "expected_statement_kind",
"statement_index": 0,
"status": "PASS"
}
],
"coverage": {
"assessment_scope": [
"unbounded_delete",
"unbounded_update",
"truncate",
"destructive_drop",
"destructive_cascade",
"alter_table_hazards",
"nonconcurrent_index",
"create_extension",
"protected_relation_mutation",
"dynamic_or_procedural_sql",
"expected_statement_kind",
"multi_statement_evaluation"
],
"checks_not_performed": [
"privilege_change",
"explicit_locking",
"alter_system",
"availability_maintenance",
"external_program_execution",
"drop_schema_or_database",
"read_cost_and_row_estimation",
"sensitive_data_access_and_exfiltration",
"tenant_isolation",
"semantic_correctness"
],
"checks_performed": [
"unbounded_delete",
"unbounded_update",
"truncate",
"destructive_drop",
"destructive_cascade",
"alter_table_hazards",
"nonconcurrent_index",
"create_extension",
"protected_relation_mutation",
"dynamic_or_procedural_sql",
"expected_statement_kind",
"multi_statement_evaluation"
],
"complete_for_declared_scope": true,
"dialect": "postgresql"
},
"decision": "BLOCK",
"input_fingerprint": "v1:4634deedb0970b042098df09e6f8bf365f2ddb635a18742c5ffa676844e4fa62",
"machine_action": "DO_NOT_EXECUTE",
"reason_codes": [
"DELETE_WITHOUT_WHERE",
"PROTECTED_RELATION_MUTATION"
],
"ruleset_version": "1.0.0",
"statement_count": 1,
"statements": [
{
"administrative": false,
"changes_privileges": false,
"changes_schema": false,
"decision": "BLOCK",
"index": 0,
"kind": "DELETE",
"mutates_data": true,
"reason_codes": [
"DELETE_WITHOUT_WHERE",
"PROTECTED_RELATION_MUTATION"
],
"relations": [
{
"name": "customers"
}
]
}
]
}Payment details
0x6746dff7bdb1ed4940dbe50024795ad97cba09afUSD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Data & Enrichment and the homepage with a featured placement.
More from vrsai & similar services
vrsai · Capabilities Package Install Preflight
api.vrsai.tech
Check an exact npm or PyPI package version immediately before installation using current registry, vulnerability, malicious-package, withdrawal/deprecation, and verified provenance evidence. Returns ALLOW, REVIEW, BLOCK, or UNKNOWN with machine-readable reasons.
vrsai · Capabilities Decision Optimization
api.vrsai.tech
Choose the lowest-cost or highest-value feasible allocation, assignment, selection, or resource mix from caller-supplied options, capacities, budgets, and eligibility rules, with independently verified feasibility evidence and solver optimality/gap information.
vrsai · Capabilities Openapi Agent Readiness
api.vrsai.tech
Assess an OpenAPI description for autonomous-agent usability.