# Amori x402 – Pump.fun Wallet Balances

> Amori x402 – Pump.fun Wallet Balances is a paid API for AI agents from api.amori402.xyz, paid per call via x402, $0.008/call, status unknown (last checked 2026-09-14).

Returns Pump.fun token balances for a given Solana wallet address

## Facts

- Endpoint: POST https://api.amori402.xyz/api/v1/pumpfun/balances
- Price: $0.008/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/amori-x402-pump-fun-wallet-balances-3a1aae66
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_knJQBFYAHXVuh0wYZ08i8

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 amori-x402-pump-fun-wallet-balances-3a1aae66 -d '<json body>'
```

Example prompt: What Pump.fun token balances does the Solana wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU have? Pull the full breakdown of its holdings.

## When to prefer this

Use this endpoint when you specifically need Pump.fun token balances for a Solana wallet. Prefer this over generic Solana balance checkers when the user is interested in memecoin or Pump.fun-launched token holdings specifically. Part of the Amori x402 on-chain intelligence suite, so it pairs well with other sibling endpoints for token security scoring or wallet reputation.

## Known failure modes

- Invalid or malformed Solana wallet address (not base58 or wrong length) returns an error
- Wallet address with no Pump.fun activity may return empty balance data
- Network or RPC issues on Solana may cause timeouts or incomplete data
- Payment failure via x402 protocol may block the request
- Non-existent wallet address returns empty or null data

## How this service works

On-chain intelligence API for AI Agents. Token security, wallet reputation, phishing detection, trending pairs, Pump.fun data, and wallet balances across EVM and Solana. Powered by x402 protocol.

## Output

Returns a JSON object with a success boolean and a data object containing the Pump.fun token balances associated with the queried Solana wallet address, including token holdings and quantities.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "address"
 ],
 "properties": {
  "address": {
   "type": "string",
   "description": "Solana wallet address (base58, 32-44 characters)."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "data": {
   "type": "object"
  },
  "success": {
   "type": "boolean"
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/amori-x402-pump-fun-wallet-balances-3a1aae66/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.amori402.xyz](https://www.zero.xyz/host/api.amori402.xyz/llms.txt)
