# Percent to Basis Points Converter

> Percent to Basis Points 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 a percent value to basis points (pct × 100) and returns the result as deterministic JSON.

## Facts

- Endpoint: POST https://api.delx.ai/api/v1/x402/pct-to-bps
- 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/percent-to-basis-points-converter-fbf626a4
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Iou1r3Tw_f_06AWpLTZWN

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

Example prompt: Convert 0.75% to basis points so I can plug it into the slippage config for my trading bot.

## When to prefer this

Use this endpoint when you need a reliable, deterministic percent-to-bps conversion as part of an automated pipeline — particularly when bridging user-facing percent inputs into bps-based trading, DeFi, or fixed-income configurations — and you want the result packaged as structured JSON without managing the math locally.

## Known failure modes

- Missing or non-numeric 'pct' field returns a validation error
- Extremely large or small floats may produce precision edge cases
- Payment failure (x402) if USDC balance or authorization is insufficient

## How this service works

Convert percent values into basis points (1% = 100 bps). Call when bridging UI percent inputs into bps-based trading configs. Returns bps = pct*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

A deterministic JSON object containing the basis points value computed as pct × 100 (e.g. 1% → 100 bps, 0.5% → 50 bps). No external calls or market data involved.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pct": {
   "type": "number",
   "description": "Input field: pct."
  }
 }
}
```

## Response schema (JSON Schema)

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

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/percent-to-basis-points-converter-fbf626a4/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)
