# SameDayDesk Solana Transaction Receipt

> SameDayDesk Solana Transaction Receipt is a paid API for AI agents from agents.samedaydesk.com, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-15).

Looks up and verifies a finalized Solana mainnet transaction, returning its status, USDC token owner deltas, and payment verification details.

## Facts

- Endpoint: GET https://agents.samedaydesk.com/chain/solana-transaction-receipt
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/samedaydesk-solana-transaction-receipt-360e3270
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_fWOa0shU-0dMJqphvX-VC

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 samedaydesk-solana-transaction-receipt-360e3270
```

Example prompt: Can you pull the Solana mainnet transaction receipt for signature 3CjY...GNZn and confirm whether the canonical USDC was actually transferred and the transaction is finalized?

## When to prefer this

Use this endpoint when you need deterministic, bounded on-chain proof that a specific Solana transaction occurred and USDC changed hands — particularly in agent-to-agent payment flows using x402 or MPP where you need settlement evidence without signing or broadcasting anything. Prefer this over generic Solana explorers when you need structured token-delta data and payment verification in a machine-readable format with explicit boundary attestation.

## Known failure modes

- Transaction signature not found on Solana mainnet — receipt.found returns false
- Transaction exists but not yet finalized — finalized returns false
- Invalid or malformed transaction signature format returns an error
- Network timeout or RPC unavailability may delay response
- Mint address provided does not match canonical USDC — deltas may be zero or misattributed

## How this service works

Deterministic agent APIs for web and company intelligence, repository security, agent-work economics, machine-service discoverability, payment preflight and settlement proof, wallet context, and Morpho decision evidence. Pay per call through Base x402 or native MPP, with a Circle Gateway Nanopayments path for gasless batched USDC.

## Output

Returns a JSON object with the transaction's slot, status (success/failure), block time, fee in lamports, finalization flag, USDC owner deltas (who gained/lost how much canonical USDC), total token owner delta count, a verification block indicating whether the payment matched a requested amount/recipient, a 'decision' field (found/not-found), and a boundary attestation confirming no wallet signing or private ledger access occurred.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "signature"
     ],
     "properties": {
      "mint": {
       "type": "string",
       "default": "EPjFWdd5AufqSSqeM2qN1xzybapC8G4wEGGkZwyTDt1v",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "SPL-token mint; defaults to canonical Solana USDC."
      },
      "payer": {
       "type": "string",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "Optional expected payer owner; requires recipient and amountAtomic."
      },
      "recipient": {
       "type": "string",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{32,44}$",
       "description": "Optional expected token recipient owner."
      },
      "signature": {
       "type": "string",
       "pattern": "^[1-9A-HJ-NP-Za-km-z]{80,90}$",
       "description": "Finalized Solana mainnet transaction signature."
      },
      "amountAtomic": {
       "type": "string",
       "pattern": "^[1-9][0-9]{0,19}$",
       "description": "Optional expected atomic amount; requires recipient."
      }
     },
     "additionalProperties": false
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object",
     "required": [
      "ok",
      "product",
      "version",
      "checkedAt",
      "decision",
      "request",
      "chain",
      "transaction",
      "receipt",
      "tokenOwnerDeltas",
      "canonicalUsdcOwnerDeltas",
      "verification",
      "findings",
      "boundary"
     ],
     "properties": {
      "ok": {
       "type": "boolean"
      },
      "chain": {
       "type": "object"
      },
      "product": {
       "type": "string",
       "const": "samedaydesk-solana-transaction-receipt"
      },
      "receipt": {
       "type": "object"
      },
      "request": {
       "type": "object"
      },
      "version": {
       "type": "string"
      },
      "boundary": {
       "type": "object"
      },
      "decision": {
       "enum": [
        "found",
     
… (truncated)
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "chain": {
   "name": "Solana mainnet",
   "network": "solana:mainnet",
   "canonicalUsdc": "EPjF...Dt1v"
  },
  "product": "samedaydesk-solana-transaction-receipt",
  "receipt": {
   "found": true,
   "finalized": true,
   "tokenOwnerDeltaCount": 2,
   "canonicalUsdcDeltaCount": 2
  },
  "request": {
   "mint": "EPjF...Dt1v",
   "payer": null,
   "recipient": null,
   "signature": "3CjY...GNZn",
   "amountAtomic": null
  },
  "version": "1.0.0",
  "boundary": {
   "source": "bounded public Solana mainnet finalized transaction RPC",
   "walletAccessed": false,
   "rawLogsReturned": false,
   "privateLedgerRead": false,
   "transactionSigned": false,
   "transactionModified": false,
   "transactionBroadcast": false,
   "rawInstructionsReturned": false
  },
  "decision": "found",
  "findings": [],
  "checkedAt": "2026-08-11T21:12:00.000Z",
  "transaction": {
   "slot": "438431606",
   "status": "success",
   "blockTime": "2026-08-11T14:40:00.000Z",
   "signature": "3CjY...GNZn",
   "feeLamports": "5000"
  },
  "verification": {
   "matched": false,
   "requested": false
  },
  "tokenOwnerDeltas": [],
  "canonicalUsdcOwnerDeltas": []
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/samedaydesk-solana-transaction-receipt-360e3270/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from agents.samedaydesk.com](https://www.zero.xyz/host/agents.samedaydesk.com/llms.txt)
