troubleshoot_integration
Get bounded diagnostic checks and relevant live tool names for a known issue category. Does not claim a diagnosis without evidence.
Diagnose an integration issue
Get bounded diagnostic checks and relevant live tool names for a known issue category. Does not claim a diagnosis without evidence.
Permission and calling convention
Required scope: chain:read. This tool reads data or account-owned state.
This tool does not sign or broadcast a transaction. Check errors, source timestamps and explicit unavailable fields before using the result.
POST /api/tools/troubleshoot_integration
Authorization: Bearer <ULTRON_ACCESS_KEY>
Content-Type: application/jsonInput schema
Inputs are validated against this current schema. Use exact values from live source results rather than substituting a ticker for a contract or a different chain.
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"issue": {
"type": "string",
"enum": [
"wrong_chain",
"double_multiplier",
"stale_quote",
"missing_balance",
"call_reverted",
"missing_alert",
"unauthorized",
"provider_unavailable",
"unsupported_protocol"
]
}
},
"required": [
"issue"
],
"additionalProperties": false
}