# Losbeto Onchain Credit Lookup

> Losbeto Onchain Credit Lookup is a paid API for AI agents from api.losbeto.xyz, paid per call via x402, $0.06/call, status unknown (last checked 2026-09-13).

Returns on-chain credit data or balance information for AI trading agents via a USDC-monetized x402 endpoint on Solana and Base networks.

## Facts

- Endpoint: GET https://api.losbeto.xyz/onchain-credit
- Price: $0.06/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/losbeto-onchain-credit-lookup-c7f99934
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_LOsaVovU8flbUAKOKycAW

Status and success rate cover calls made through Zero and Zero's own probes. Third-party monitors may report differently.

## How to call it through Zero

Zero handles the 402 payment challenge and records the run. With the Zero CLI installed (`npm i -g @zeroxyz/cli`):

```sh
zero fetch --capability losbeto-onchain-credit-lookup-c7f99934
```

Example prompt: Check my on-chain credit status on the Base network for wallet 0xABC123 — I need to know if I have enough credit available before my trading agent executes the next position.

## When to prefer this

Choose this endpoint when an AI trading agent needs to check on-chain credit status or balances on Solana or Base networks before executing trades, and you are already operating within the x402 USDC micropayment ecosystem. Prefer this over generic blockchain RPC calls when you want a pre-packaged, agent-optimized credit lookup with minimal setup.

## Known failure modes

- Missing or malformed properties parameter returns an error or empty result
- Wallet address not found on specified chain returns null or 404-like response
- Network congestion on Solana or Base may cause delayed or failed lookups
- Insufficient USDC payment (below $0.06) results in x402 payment required error
- Invalid chain identifier causes routing failure

## How this service works

OpenAI-compatible LLM gateway at $0.005/call — change base_url, pay in USDC. Plus pay-per-call market data: multi-oracle price consensus, sentiment, forex, equities, commodities, Brazil macro (BCB/B3) and crypto. No API keys, no accounts. USDC on Base, Solana and Algorand via x402.

## Output

Returns a JSON object containing on-chain credit information for the queried wallet or agent, likely including credit balance, credit limit, chain network, and account status. Exact schema is minimal per available documentation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "properties": {
      "wallet": {
       "type": "string",
       "description": "Solana wallet address to score"
      }
     }
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "object",
     "description": "On-chain credit score (0-900) for any Solana wallet: account age, activity, balance tiers and counterparty history."
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/losbeto-onchain-credit-lookup-c7f99934/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.losbeto.xyz](https://www.zero.xyz/host/api.losbeto.xyz/llms.txt)
