# Geolithic Intelligence Mesh Face Claim

> Geolithic Intelligence Mesh Face Claim is a paid API for AI agents from geolithicintelligence.com, paid per call via x402, $0.02/call, status unknown (last checked 2026-09-14).

Finalizes a winning bid for exclusive lease of one geodesic mesh face of Earth by paying the clearing price, issuing a blockchain-verified land claim receipt.

## Facts

- Endpoint: GET https://geolithicintelligence.com/api/claim
- Price: $0.02/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-14
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/geolithic-intelligence-mesh-face-claim-646dc230
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_M2P2XkiE2zVg7hPDHkeef

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 geolithic-intelligence-mesh-face-claim-646dc230
```

Example prompt: I won the auction for a mesh face — use my winning bid receipt with address 0xABC123, start time 1720000000, amount 0.5 degrees, and salt abc789 to pay the clearing price and finalize my Earth mesh lease.

## When to prefer this

Use this endpoint after winning a Geolithic Intelligence mesh face auction and receiving a valid bid receipt; it is the only endpoint that finalizes payment and issues the blockchain-verified lease. Do not use for browsing available faces (use /api/catalog) or placing initial bids (use POST /api/bid).

## Known failure modes

- Invalid or expired bid receipt (wrong addr/start/amount/salt combination) — claim rejected
- Bid not won or outbid by another party — lease not issued
- Insufficient USDC balance to cover clearing price — payment failure
- Duplicate claim attempt on already-claimed face — conflict error
- Malformed query parameters — 400 bad request
- Network or chain congestion causing delayed confirmation

## How this service works

The winner's claim of one face of the Earth's mesh for one term: for one term the face is yours alone, the gavel says so and a public chain proves it. Bid first, free, at POST /api/bid {addr, amount_degrees, salt}; after the gavel GET this route with the receipt's addr, start, amount and salt; a winner pays the clearing price here — a dollar at the reserve, USDC on Base — and the lease issues. Catalog: /api/catalog. Pages: /llms.txt.

## Output

Returns a confirmed lease record for the claimed mesh face, including blockchain proof of ownership, the clearing price paid in USDC on Base, and the lease term details tied to the winner's wallet address.

## Request schema (JSON Schema)

```json
{
 "type": "object",
 "$schema": "https://json-schema.org/draft/2020-12/schema",
 "required": [
  "input"
 ],
 "properties": {
  "input": {
   "type": "object",
   "required": [
    "type",
    "method"
   ],
   "properties": {
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "GET",
      "HEAD",
      "DELETE"
     ],
     "type": "string"
    },
    "headers": {
     "type": "object",
     "additionalProperties": {
      "type": "string"
     }
    },
    "queryParams": {
     "type": "object",
     "required": [
      "addr",
      "start",
      "amount",
      "salt"
     ],
     "properties": {
      "addr": {
       "type": "string"
      },
      "salt": {
       "type": "string"
      },
      "start": {
       "type": "string"
      },
      "amount": {
       "type": "string"
      }
     }
    }
   },
   "additionalProperties": false
  },
  "output": {
   "type": "object",
   "required": [
    "type"
   ],
   "properties": {
    "type": {
     "type": "string"
    },
    "example": {
     "type": "object"
    }
   }
  }
 }
}
```

## More

- Live health (JSON, refreshed every minute): https://www.zero.xyz/c/geolithic-intelligence-mesh-face-claim-646dc230/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from geolithicintelligence.com](https://www.zero.xyz/host/geolithicintelligence.com/llms.txt)
