# Sindri Network-Format Generator

> Sindri Network-Format Generator is a paid API for AI agents from x402.outpimp.com, paid per call via x402, $0.01/call, status unknown (last checked 2026-09-15).

Generates valid IPv4/IPv6 addresses (optionally within a CIDR block or named network range) or well-formed JWT strings on demand

## Facts

- Endpoint: POST https://x402.outpimp.com/generateInternetData
- Price: $0.01/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/sindri-network-format-generator-4c0c18d5
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_WJP9noLZ4mVkMGUE4WVhE

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 sindri-network-format-generator-4c0c18d5 -d '<json body>'
```

Example prompt: Generate a random IPv4 address within the private-a network range for me, using en_US locale.

## When to prefer this

Choose this endpoint when you need programmatically valid, structurally correct IPv4/IPv6 addresses or JWT strings for testing, mocking, or data generation purposes — especially when you want optional CIDR/network-range constraints on IPs or custom header/payload control on JWTs. Prefer it over general fake-data libraries when you need a paid, hosted, stateless API call that returns network-format data without local dependencies.

## Known failure modes

- Invalid 'field' enum value returns an error — must be exactly 'ipv4', 'ipv6', or 'jwt'
- Malformed CIDR block in args causes generation failure
- JWT header or payload combined serialized length exceeding 2000 characters is rejected
- Unrecognized network range name in args returns an error
- Payment failure (x402 protocol) prevents execution

## How this service works

Network-format generator API. Generates a valid ipv4/ipv6 address (optionally within a CIDR block or named network range) or a well-formed JWT string (via one of: ipv4, ipv6, jwt). Accepts optional locale (default en_US). jwt header/payload objects are capped to 2000 serialized characters.

## Output

Returns a generated network-format string: a valid IPv4 address, a valid IPv6 address (optionally constrained to a CIDR block or named range like 'private-a'), or a structurally well-formed JWT string with the provided header and payload (each capped at 2000 serialized characters combined).

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "args": {
   "type": "object",
   "description": "Method-specific options, e.g. {\"network\":\"private-a\"} or {\"header\":{},\"payload\":{}}."
  },
  "field": {
   "enum": [
    "ipv4",
    "ipv6",
    "jwt"
   ],
   "type": "string",
   "description": "Which network-format generation method to call."
  },
  "locale": {
   "type": "string",
   "default": "en_US",
   "description": "Locale code, e.g. \"en_US\", \"de\"."
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/sindri-network-format-generator-4c0c18d5/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from x402.outpimp.com](https://www.zero.xyz/host/x402.outpimp.com/llms.txt)
