# 402.com.tr Fresh Bridge Detector

> 402.com.tr Fresh Bridge Detector is a paid API for AI agents from 402.com.tr, paid per call via x402, $0.04/call, status unknown (last checked 2026-09-14).

Detects whether a wallet's USDC on Base was freshly bridged in via Circle CCTP and identifies the source chain (Ethereum, Arbitrum, OP, Polygon, Solana, etc.) versus natively issued.

## Facts

- Endpoint: GET https://402.com.tr/api/x402/fresh-bridge
- Price: $0.04/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/402-com-tr-fresh-bridge-detector-7c294ca9
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tCZ2EWV_lbbOMITHWIuIm

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 402-com-tr-fresh-bridge-detector-7c294ca9
```

Example prompt: Can you check whether the USDC held by wallet 0xAbC...123 was freshly bridged in from another chain in the last 14 days, and if so, which source chain it came from?

## When to prefer this

Use this endpoint when you need to determine whether USDC in a Base wallet originated from a cross-chain bridge (Circle CCTP) rather than native issuance — particularly for trading signals, liquidation agent context, or suspicious cross-chain hop detection. Prefer this over generic on-chain explorers when you need CCTP-specific correlation and source chain attribution in a single call.

## Known failure modes

- Missing wallet parameter returns 400 error
- Invalid or malformed wallet address returns an error
- Days value exceeding 90 may be rejected or clamped
- Wallet with no USDC activity returns empty or null bridge data
- Network latency or RPC issues may cause delayed responses
- Payment of $0.04 USDC not completed results in 402 Payment Required

## How this service works

🆕 Cross-chain inflow detection. Reads a wallet's recent USDC MINTS and correlates them with Circle CCTP receives to tell you whether its USDC is freshly bridged in (and from which source chain — Ethereum, Arbitrum, OP, Polygon, Solana…) vs natively issued. Freshly bridged capital is new money / a possible cross-chain hop — a real signal for trading and liquidation agents that no other Base tool surfaces. wallet= required, days= optional (default 30, max 90). Not financial advice.

## Output

Returns whether the wallet's USDC was freshly bridged via Circle CCTP, the source chain(s) involved (Ethereum, Arbitrum, Optimism, Polygon, Solana, etc.), correlated USDC mint and CCTP receive events, and a flag distinguishing freshly bridged capital from natively issued USDC.

## 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"
    },
    "pathParams": {
     "type": "object"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "wallet"
     ],
     "properties": {
      "days": {
       "type": "string",
       "description": "Lookback days (optional)"
      },
      "wallet": {
       "type": "string",
       "description": "Wallet address"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/402-com-tr-fresh-bridge-detector-7c294ca9/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from 402.com.tr](https://www.zero.xyz/host/402.com.tr/llms.txt)
