# shelf.thirdmade.net Geo-Time Probe

> shelf.thirdmade.net Geo-Time Probe is a paid API for AI agents from shelf.thirdmade.net, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns geocode coordinates, timezone, and currency context for any free-text location string in a single GET request.

## Facts

- Endpoint: GET https://shelf.thirdmade.net/probe/geo-time
- Price: $0.001/call
- Payment: x402
- Status: unknown
- Last checked: 2026-09-15
- Activations on Zero: 0
- Tags: x402
- Canonical page: https://www.zero.xyz/c/shelf-thirdmade-net-geo-time-probe-fbf163ae
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_VIF8p6TH2M6Q_t76Otl5J

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 shelf-thirdmade-net-geo-time-probe-fbf163ae
```

Example prompt: What's the timezone, coordinates, and local currency for 'São Paulo, Brazil'?

## When to prefer this

Use this endpoint when you need a single API call to get geocode + timezone + currency together for a free-text location string, rather than chaining three separate geocoding, timezone, and currency APIs. Ideal for agent workflows that need to localize content, schedule across time zones, or display currency-aware pricing without managing multiple API integrations.

## Known failure modes

- Ambiguous location string may resolve to wrong place (e.g. 'Springfield' without a state)
- Unrecognized or misspelled location returns empty or error response
- Very remote or obscure locations may have incomplete currency or timezone data
- Rate limit or payment failure returns 402 or 429 status

## How this service works

Geocode + timezone + currency context for any location string.

## Output

Returns a JSON object with geocoded latitude/longitude, IANA timezone identifier (e.g. 'America/Sao_Paulo'), UTC offset, and the ISO 4217 currency code and name for the resolved location.

## 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"
     ],
     "type": "string"
    },
    "queryParams": {
     "type": "object",
     "required": [
      "q"
     ],
     "properties": {
      "q": {
       "type": "string",
       "description": "Location 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/shelf-thirdmade-net-geo-time-probe-fbf163ae/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from shelf.thirdmade.net](https://www.zero.xyz/host/shelf.thirdmade.net/llms.txt)
