# Sindri Random Geo-Coordinate Generator

> Sindri Random Geo-Coordinate 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 a true-random latitude, longitude, or nearby GPS coordinate bounded by optional min/max or origin+radius parameters

## Facts

- Endpoint: POST https://x402.outpimp.com/generateGeoCoordinate
- 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-random-geo-coordinate-generator-0ef26171
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_5DOG7ojFfwrvgg9T2bPQt

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-random-geo-coordinate-generator-0ef26171 -d '<json body>'
```

Example prompt: Generate a random GPS coordinate somewhere near latitude 37.7749, longitude -122.4194 (San Francisco) within a 10-kilometer radius using the nearbyGPSCoordinate method.

## When to prefer this

Choose this endpoint when you need true-random geographic coordinates for testing, simulation, dataset seeding, or any scenario requiring bounded or nearby random geo values; prefer it over deterministic pseudo-random generators when unpredictability matters or when you need coordinates constrained to a real-world area around a known origin.

## Known failure modes

- Invalid field enum value — must be one of latitude, longitude, nearbyGPSCoordinate
- origin not provided as a [latitude, longitude] array for nearbyGPSCoordinate
- Numeric args exceed +/-1e15 cap
- Precision value outside 0-20 range
- Payment failure or insufficient USDC balance via x402 protocol

## How this service works

True-random-geo-coordinate generator API. Generates a bounded random latitude, longitude, or a coordinate near a given origin (via one of: latitude, longitude, nearbyGPSCoordinate). Accepts optional locale (default en_US). Numeric args are capped to +/-1e15; precision is capped to 0-20; origin must be a [latitude, longitude] pair.

## Output

Returns a randomly generated geographic value: a single floating-point latitude, a single floating-point longitude, or a [latitude, longitude] coordinate pair (for nearbyGPSCoordinate), bounded by any provided min/max or origin/radius constraints, with precision up to 20 decimal places.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "properties": {
  "args": {
   "type": "object",
   "description": "Method-specific options, e.g. {\"min\":10,\"max\":20} or {\"origin\":[10,20],\"radius\":5}."
  },
  "field": {
   "enum": [
    "latitude",
    "longitude",
    "nearbyGPSCoordinate"
   ],
   "type": "string",
   "description": "Which geo-coordinate 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-random-geo-coordinate-generator-0ef26171/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)
