Evaluate whether a requested USDC supply amount is realizable across approved Aa
Evaluate whether a requested USDC supply amount is realizable across approved Aave V3 and Morpho Blue lending opportunities on Base, with optional minimum supply APY and protocol filters.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1106 msmedian answer time
$0.01listed price per call
$0.01price it asked us
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.alphabuild.xyz/lor/v1/evaluate
| Category | Everything else |
|---|---|
| Provider host | api.alphabuild.xyz |
| Networks | eip155:8453 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.01 | 1106 ms |
Example input (from the provider)
{
"body": {
"amount": "1000",
"asset": "USDC",
"target_environment": {
"chain_id": 8453,
"kind": "evm_chain",
"network_name": "base"
}
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"additionalProperties": false,
"properties": {
"amount": {
"description": "Requested USDC amount in whole-token decimal units, not atomic units.",
"pattern": "^[0-9]+(?:\\.[0-9]+)?$",
"type": "string"
},
"asset": {
"const": "USDC",
"type": "string"
},
"minimum_base_supply_apy": {
"description": "Optional minimum acceptable base supply APY as a decimal fraction.",
"pattern": "^[0-9]+(?:\\.[0-9]+)?$",
"type": "string"
},
"opportunity_id": {
"description": "Optional approved opportunity identifier; requires protocol.",
"minLength": 1,
"type": "string"
},
"protocol": {
"description": "Optional protocol filter.",
"enum": [
"aave-v3",
"morpho-blue"
],
"type": "string"
},
"target_environment": {
"additionalProperties": false,
"properties": {
"chain_id": {
"const": 8453,
"type": "integer"
},
"kind": {
"const": "evm_chain",
"type": "string"
},
"network_name": {
"const": "base",
"type": "string"
}
},
"required": [
"kind",
"chain_id"
],
"type": "object"
}
},
"required": [
"target_environment",
"asset",
"amount"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"properties": {
"payment": {
"properties": {
"status": {
"type": "string"
},
"x402_implemented": {
"type": "boolean"
}
},
"required": [
"status",
"x402_implemented"
],
"type": "object"
},
"request_id": {
"pattern": "^[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}$",
"type": "string"
},
"result": {
"properties": {
"constraint_mode": {
"enum": [
"NONE",
"MINIMUM_BASE_SUPPLY_APY"
],
"type": "string"
},
"minimum_base_supply_apy": {
"type": [
"string",
"null"
]
},
"opportunities": {
"items": {
"type": "object"
},
"type": "array"
},
"requested_amount": {
"type": "string"
},
"selected_opportunity": {
"type": [
"object",
"null"
]
},
"selection": {
"type": "object"
}
},
"required": [
"requested_amount",
"minimum_base_supply_apy",
"constraint_mode",
"selection",
"selected_opportunity",
"opportunities"
],
"type": "object"
},
"service": {
"const": "lor",
"type": "string"
},
"verdict": {
"enum": [
"PROCEED",
"PROCEED_WITH_LIMIT",
"BLOCKED",
"UNKNOWN"
],
"type": "string"
}
},
"required": [
"request_id",
"service",
"verdict",
"result",
"payment"
],
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}