# Basis Points to Percent Converter

> Basis Points to Percent Converter is a paid API for AI agents from api.delx.ai, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Converts an integer basis points (bps) value to a percentage string by computing pct = bps / 100, returning deterministic JSON for display in operator-facing copy.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/bps-to-pct
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/basis-points-to-percent-converter-991674b5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_cgrEMdPo0efg1mqpIY6B5

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 basis-points-to-percent-converter-991674b5 -d '<json body>'
```

Example prompt: What is 150 basis points as a percentage? I need to show it as a formatted percent string in my fee display copy.

## When to prefer this

Use this endpoint when you need a simple, deterministic, auditable conversion of a basis points integer to a human-readable percentage string for display purposes — especially in DeFi, trading, or financial operator UIs where fees and slippage are expressed in bps. Prefer this over manual calculation when you want a standardized JSON response for copy generation. Not suitable when you need live market data, price quotes, or complex fee modeling.

## Known failure modes

- Missing or non-integer bps field returns a validation error
- Extremely large or negative bps values may return unexpected results if not validated by caller
- Payment failure via x402 prevents the call from completing
- No network or RPC fallback — purely local math, so no live data errors possible

## How this service works

Convert basis points into percent for operator-facing copy. Call when showing fee or slippage bps as percent strings. Returns pct = bps/100 as deterministic JSON for $0.001 USDC via x402 on Base. First-party local math only—no RPC, live market feed, API keys, storage, or mediagen. Advisory only; the caller owns capital, risk, and production controls.

## Output

Returns a deterministic JSON object containing the computed percent value (pct = bps / 100), suitable for direct use in operator-facing UI copy or fee display strings. No external calls are made; the result is a pure local math computation.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "bps": {
   "type": "integer",
   "description": "Input field: bps."
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "bps": 30,
  "pct": 0.3,
  "schema": "delx/util-bps-to-pct/v1"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/basis-points-to-percent-converter-991674b5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from api.delx.ai](https://www.zero.xyz/host/api.delx.ai/llms.txt)
