# true402 Base Token Liquidity Removal History

> true402 Base Token Liquidity Removal History is a paid API for AI agents from true402.dev, paid per call via x402, $0.005/call, status unknown (last checked 2026-09-15).

Returns a paginated history of liquidity removal events for a specified Base network token contract address.

## Facts

- Endpoint: POST https://true402.dev/api/v1/base/liquidity-history
- Price: $0.005/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/true402-base-token-liquidity-removal-history-5c3ca2c2
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_GftDxyavK79cAOy9x-62W

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 true402-base-token-liquidity-removal-history-5c3ca2c2 -d '<json body>'
```

Example prompt: Can you pull the last 100 liquidity removal events for the Base token at contract address 0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913?

## When to prefer this

Choose this endpoint when you need on-chain liquidity removal event history specifically for tokens deployed on the Base network, particularly for risk analysis, rug pull detection, or auditing DeFi token liquidity stability. It is pay-per-call via HTTP 402/x402, making it suitable for agent workflows that need on-demand, metered data access without subscription overhead.

## Known failure modes

- Invalid or malformed contract address returns an error or empty result
- Token address not found on Base network returns empty history
- Limit value outside 1–200 range may return a validation error
- Network or provider downtime returns a 5xx error
- Payment failure via HTTP 402 blocks the request if wallet balance is insufficient

## How this service works

The machine-native marketplace. Wallet = identity. Pay per call with HTTP 402.

## Output

A JSON object containing a list of liquidity removal events for the specified Base token contract, up to the requested limit (default 50, max 200). Each event likely includes details such as timestamp, amount removed, and transaction identifiers, enabling analysis of liquidity patterns and potential rug pull risks.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "required": [
  "token"
 ],
 "properties": {
  "limit": {
   "type": "number",
   "description": "Max removal events returned (1–200, default 50)"
  },
  "token": {
   "type": "string",
   "description": "Base token contract address (0x…)"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "object"
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/true402-base-token-liquidity-removal-history-5c3ca2c2/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from true402.dev](https://www.zero.xyz/host/true402.dev/llms.txt)
