$0.001
per call · USD Coin on Base
Get the on-chain status of a single transaction by its Yield.xyz transaction ID — poll after broadcasting to confirm it landed, or inspect the constructed/unsigned transaction.
Endpoint
POST https://mcp.yield.xyz/x402/get_transaction1
Calls / 30d
1
Unique payers / 30d
Sep 8
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://mcp.yield.xyz/x402/get_transaction", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
"transactionId": "6b757454-725c-4871-9f9a-8fa159dc8720"
}),
});
const data = await res.json();curl -X POST \
"https://mcp.yield.xyz/x402/get_transaction" \
-H "Content-Type: application/json" \
-d '{"transactionId":"6b757454-725c-4871-9f9a-8fa159dc8720"}' \
-H "X-PAYMENT: <signed x402 payment>"Example response
{
"hash": "0xabc…",
"id": "6b757454-…",
"network": "base",
"status": "CONFIRMED",
"type": "SUPPLY"
}Payment details
0xd433f056270912659f073d5ffe7ae247e39235a5USD Coin · 0x833589fcd6edb6e08f4c7c32d4f71b54bda02913Is this your API?
Pin it to the top of Onchain Data and the homepage with a featured placement.
More from Yield.xyz MCP & similar services
Yield.xyz MCP · Yields GET ALL
mcp.yield.xyz
Discover DeFi yield opportunities across 80+ networks — 3,300+ staking, lending, vault, and RWA yields from Lido, Aave, Morpho, and more. Filter by token, network, yield type, or provider and sort by APY or TVL. Returns yield IDs (needed by every other tool) with APY, TVL, lock-up/cooldown periods, and KYC gating. Start here.
Yield.xyz MCP · Yields GET Balances
mcp.yield.xyz
Get live DeFi yield balances and pending actions for any wallet — active staking, lending, vault, and RWA positions with accrued rewards, USD values, current APY, and claimable actions. Covers 3,300+ yields (Lido, Aave, Morpho, tokenized treasuries) across 80+ networks. Call before actions_exit or actions_manage.
Yield.xyz MCP · Networks GET ALL
mcp.yield.xyz
List every network Yield.xyz supports (80+) with its id (slug), name, and category (EVM, Cosmos, Substrate, misc). Filter by name/id or category. Use the network id to filter yields_get_all.