# SolProbe Trade Execute

> SolProbe Trade Execute is a paid API for AI agents from api.solprobe.xyz, paid per call via x402, $0.15/call, status down (last checked 2026-09-15).

Submits a pre-signed Solana transaction for execution and returns the confirmed on-chain transaction signature

## Facts

- Endpoint: POST https://api.solprobe.xyz/trade/execute
- Price: $0.15/call
- Payment: x402
- Status: down
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/solprobe-trade-execute-f53fb07b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_MFnlBUByK8euoF0xu5b-S

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 solprobe-trade-execute-f53fb07b -d '<json body>'
```

Example prompt: Submit and execute this pre-signed Solana transaction for job abc-123 — here's the base64-encoded signed transaction: 'AQAAAA...base64string...' — I need the confirmed on-chain tx signature back.

## When to prefer this

Use this endpoint when you have already prepared and signed a Solana transaction (e.g. from a prior quote or job creation step) and need to broadcast and confirm it on-chain. This is specifically for the execution/submission step, not for querying token data or generating trade quotes. Prefer this when you need a confirmed tx signature as proof of execution.

## Known failure modes

- Invalid or expired job_id returns error or unprocessed status
- Malformed or invalid base64 signed transaction causes rejection
- Transaction already submitted (non-idempotent) may return duplicate or conflict error
- Solana network congestion or RPC failure may delay or fail confirmation
- Insufficient USDC payment via x402 protocol results in 402 Payment Required
- Transaction simulation failure or slippage exceeded causes on-chain failure

## How this service works

AI-callable Solana token intelligence. Pay per call via x402 USDC on Base or Solana, or Virtuals ACP escrow. No accounts, no keys, no subscription.

## Output

Returns a JSON object with status 'CONFIRMED', the on-chain Solana transaction signature (base58 encoded), and schema_version '2.0', confirming the trade was successfully executed on-chain.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "job_id": {
   "type": "string"
  },
  "signed_transaction_b64": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "status": "CONFIRMED",
  "execution": {
   "tx_signature": "<base58 Solana tx signature>"
  },
  "schema_version": "2.0"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/solprobe-trade-execute-f53fb07b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.solprobe.xyz](https://www.zero.xyz/host/api.solprobe.xyz/llms.txt)
