# KiHustle RSA Keypair Info Extractor

> KiHustle RSA Keypair Info Extractor 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).

Parses a PEM-encoded RSA key and returns extracted metadata and structural information about the keypair

## Facts

- Endpoint: POST https://kihustle.tech/nexus/api/v1/rsa-keypair-info
- 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/kihustle-rsa-keypair-info-extractor-b4ab08ea
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_SYzKMu5UpeQEftLRdKjHZ

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 kihustle-rsa-keypair-info-extractor-b4ab08ea -d '<json body>'
```

Example prompt: Can you parse this PEM-encoded RSA key and tell me what key size and type it is? Here's the PEM: -----BEGIN RSA PRIVATE KEY----- MIIEowIBAAKCAQEA... -----END RSA PRIVATE KEY-----

## When to prefer this

Use this endpoint when you need to quickly extract and inspect RSA key metadata from a PEM string without running local cryptographic libraries. Suitable for lightweight key inspection tasks in automation pipelines where installing crypto dependencies is impractical.

## Known failure modes

- Invalid or malformed PEM text returns an error status
- Non-RSA PEM types (e.g. EC keys) may return unexpected results or errors
- Empty pem_text field may return a validation error
- Truncated or corrupted PEM data may fail to parse

## 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 indicating processing outcome and a status field (e.g. 'success'), along with extracted RSA key metadata such as key type, size, and structural parameters derived from the PEM input.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "pem_text": {
   "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/kihustle-rsa-keypair-info-extractor-b4ab08ea/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)
