# Skopos Cross-Chain Quote

> Skopos Cross-Chain Quote is a paid API for AI agents from www.tryskopos.xyz, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-16).

Returns an execution quote for moving a token amount from one blockchain to another via cross-chain intent resolution

## Facts

- Endpoint: POST https://www.tryskopos.xyz/api/quote
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-16
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/skopos-cross-chain-quote-0b651f7b
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_4a0jgS55K7x_h9_oGgNyg

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 skopos-cross-chain-quote-0b651f7b -d '<json body>'
```

Example prompt: Get me a quote to bridge 100 USDC from Ethereum to Solana using my wallet 0xAbCd... — I want to know the route and estimated cost before I execute.

## When to prefer this

Choose this endpoint when you need a pre-execution quote for a cross-chain token transfer and want to inspect routing and fees before committing. Ideal for agents managing DeFi portfolios, automating treasury operations across multiple blockchains, or comparing bridge costs before executing. Best suited when you need EVM-to-Solana or EVM-to-EVM bridging with explicit intent-based routing rather than manual DEX aggregation.

## Known failure modes

- Unsupported chain pair — origin or destination chain not supported
- Unsupported token — token symbol or address not recognized on specified chain
- Amount too small — below minimum bridgeable threshold
- Invalid address format — sender or destination address malformed
- Liquidity unavailable — insufficient liquidity for the requested route at the given amount
- Missing required fields — originChain, destinationChain, token, or amount not provided

## How this service works

Cross-chain intent execution. Say what you want, it executes.

## Output

A quote object detailing the cross-chain execution path, estimated output amount, fees, and routing information needed to bridge tokens from the origin chain to the destination chain

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "token": {
   "type": "string",
   "minLength": 1
  },
  "amount": {
   "type": "string",
   "minLength": 1
  },
  "originChain": {
   "type": "string",
   "minLength": 1
  },
  "senderAddress": {
   "type": "string"
  },
  "solanaAddress": {
   "type": "string"
  },
  "destinationChain": {
   "type": "string",
   "minLength": 1
  },
  "destinationToken": {
   "type": "string",
   "minLength": 1
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/skopos-cross-chain-quote-0b651f7b/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from www.tryskopos.xyz](https://www.zero.xyz/host/www.tryskopos.xyz/llms.txt)
