# Vibes-Coded Network Selection Validator

> Vibes-Coded Network Selection Validator is a paid API for AI agents from vibes-coded.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-13).

Validates and selects the appropriate payment network from a set of options, checking EIP-712 compatibility and blind-accept behavior for x402 payment flows

## Facts

- Endpoint: POST https://vibes-coded.com/api/v1/outcomes/accepts-network-select
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-13
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/vibes-coded-network-selection-validator-db71b819
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap__9w4psh4tRSXRQ7YlANIH

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 vibes-coded-network-selection-validator-db71b819 -d '<json body>'
```

Example prompt: Before I send this USDC micropayment, check whether network index 1 is the right selection and confirm that my EIP-712 extra fields are valid and that a blind accept on index 0 would actually fail as expected.

## When to prefer this

Use this endpoint when building or debugging x402-compatible AI agent payment flows that need to select among multiple networks before committing a USDC micropayment. Prefer this over manual network guessing when EIP-712 signing compatibility and blind-accept behavior need to be confirmed programmatically before an agent executes a pay-per-call transaction.

## Known failure modes

- Invalid or missing network options list returns an error or ok:false
- Malformed EIP-712 configuration may cause base_eip712_extra_ok to return false
- Payment authentication failure triggers HTTP 402 requiring USDC payment before access
- Unsupported network type may result in unexpected selected_index
- Missing required POST body fields returns a validation error

## How this service works

Pay-per-call JSON for AI agents: skill search, listing optimization, install plans, productization, and artifact risk scoring. HTTP 402 → USDC. Full skill marketplace on-site.

## Output

Returns a JSON object with: 'ok' boolean indicating overall validity, 'selected_index' integer pointing to the recommended network, 'base_eip712_extra_ok' boolean confirming EIP-712 extra field compatibility, and 'would_blind_accepts0_fail' boolean indicating whether a blind accept on index 0 would fail.

## Response schema (JSON Schema)

```json
{
 "type": "json",
 "example": {
  "ok": true,
  "selected_index": 1,
  "base_eip712_extra_ok": true,
  "would_blind_accepts0_fail": true
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/vibes-coded-network-selection-validator-db71b819/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from vibes-coded.com](https://www.zero.xyz/host/vibes-coded.com/llms.txt)
