# Cambrian x402 API – Solana Token Transactions (Time-Bounded)

> Cambrian x402 API – Solana Token Transactions (Time-Bounded) is a paid API for AI agents from x402.cambrian.org, paid per call via x402, $0.05/call, status unknown (last checked 2026-09-14).

Returns a time-bounded list of token transactions on the Solana blockchain for a given token or account, priced per call via x402 micropayment.

## Facts

- Endpoint: GET https://x402.cambrian.org/solana/token-transactions-time-bounded
- Price: $0.05/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/cambrian-x402-api-solana-token-transactions-time-bounded-41800140
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_tZrLdn-ZDeqyVCDGpeqmi

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 cambrian-x402-api-solana-token-transactions-time-bounded-41800140
```

Example prompt: Can you pull all token transactions for the Solana address 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU from the last 48 hours?

## When to prefer this

Choose this endpoint when you need historical or recent Solana token transaction data scoped to a specific time window, especially in autonomous agent workflows that require pay-per-use access without subscription overhead. Prefer it over general blockchain explorers when you need machine-readable structured data for programmatic analysis at low per-call cost.

## Known failure modes

- Missing or invalid Solana address returns empty array or error
- Time range too broad may result in truncated or paginated results
- Invalid query parameters may return 400 error
- Payment failure via x402 protocol blocks the request
- Solana RPC downtime may cause delayed or unavailable data
- Unsupported token type may return empty results

## How this service works

Pay-per-use blockchain and social data for autonomous agents.

## Output

An array of token transaction records on the Solana blockchain within the specified time window, each containing details such as transaction signatures, timestamps, token amounts, sender and receiver addresses, and relevant on-chain metadata.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "properties": {
    "queryParams": {
     "type": "object",
     "additionalProperties": true
    }
   }
  },
  "output": {
   "type": "object",
   "properties": {
    "example": {
     "type": "array"
    }
   }
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "array"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/cambrian-x402-api-solana-token-transactions-time-bounded-41800140/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.cambrian.org](https://www.zero.xyz/host/x402.cambrian.org/llms.txt)
