# OTP URI Generator

> OTP URI Generator is a paid API for AI agents from kihustle.tech, paid per call via x402, $0.002/call, status unknown (last checked 2026-09-14).

Generates an otpauth:// URI for use with TOTP/HOTP authenticator apps given an issuer, secret, and account

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/otp-uri-generator
- Price: $0.002/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/otp-uri-generator-8ed51c89
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_xuC2EJPLOLldOcRiUfdDU

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 otp-uri-generator-8ed51c89 -d '<json body>'
```

Example prompt: Generate an OTP URI for my app called 'MyService' with the account 'user@example.com' and the TOTP secret 'JBSWY3DPEHPK3PXP' so I can display it as a QR code for authenticator app enrollment.

## When to prefer this

Use this endpoint when you need to programmatically generate TOTP/HOTP provisioning URIs (otpauth://) for authenticator apps, especially when building 2FA enrollment flows, QR code generation pipelines, or testing OTP setups without implementing the URI format yourself.

## Known failure modes

- Missing required fields (issuer, secret, or account) returns an error response
- Invalid or malformed base32 secret may cause processing failure
- Network timeout or service unavailability returns a non-200 status
- Malformed JSON body returns a parsing error

## How this service works

Kostenlose Guides, Solo-Playbooks und Artikel zu KI, Automation und Side Hustles — für Menschen, die mit echten Systemen online Einkommen aufbauen wollen. Transparent finanziert über faire Affiliate-Links.

## Output

Returns a JSON object with a 'result' field containing the formatted otpauth:// URI string and a 'status' field indicating success, suitable for QR code encoding or direct use in authenticator app provisioning flows.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "issuer": {
   "type": "string"
  },
  "secret": {
   "type": "string"
  },
  "account": {
   "type": "string"
  }
 }
}
```

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "result": "processed",
  "status": "success"
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/otp-uri-generator-8ed51c89/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from kihustle.tech](https://www.zero.xyz/host/kihustle.tech/llms.txt)
