# Suverse Time-by-IP Lookup

> Suverse Time-by-IP Lookup is a paid API for AI agents from proxy.suverse.io, paid per call via x402, $0.001/call, status unknown (last checked 2026-09-15).

Returns the current local time, timezone, weekday, and DST status for a given IP address's geographic location using TimeAPI.

## Facts

- Endpoint: POST https://proxy.suverse.io/v1/data/suverse-time-by-ip
- 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/suverse-time-by-ip-lookup-549dc795
- Structured record (JSON): https://api.zero.xyz/v1/capabilities/cap_Tn_-oTbGR5p2SgOlth3Xr

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 suverse-time-by-ip-lookup-549dc795 -d '<json body>'
```

Example prompt: What is the current local time, timezone, and whether daylight saving is active for the IP address 203.0.113.42?

## When to prefer this

Choose this endpoint when you need to determine the current local time for a user or device identified only by an IP address, without holding a TimeAPI key yourself. It is ideal for agents that personalize experiences, schedule actions, or localize timestamps based on inferred user location, and when you want a keyless, pay-per-call approach via x402.

## Known failure modes

- Invalid or private/reserved IP address returns an error or empty result
- Unroutable IPs (e.g. 127.0.0.1, 192.168.x.x) may not resolve to a geographic location
- Upstream TimeAPI outage causes degraded or failed response
- Malformed request body results in HTTP 400
- Payment failure or insufficient balance returns HTTP 402

## How this service works

Current local time for an IP address's location via keyless TimeAPI. Returns ISO date-time, weekday, timezone and DST flag. For agents inferring a user's local time from their IP.

## Output

Returns an ISO 8601 date-time string representing the current local time at the IP's location, the day of the week, the IANA timezone name, and a boolean flag indicating whether Daylight Saving Time is currently active.

## 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",
    "bodyType",
    "body"
   ],
   "properties": {
    "body": {
     "properties": {}
    },
    "type": {
     "type": "string",
     "const": "http"
    },
    "method": {
     "enum": [
      "POST",
      "PUT",
      "PATCH"
     ],
     "type": "string"
    },
    "bodyType": {
     "enum": [
      "json",
      "form-data",
      "text"
     ],
     "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/suverse-time-by-ip-lookup-549dc795/health.json
- [Zero catalog index](https://www.zero.xyz/llms.txt)
- [Other services from proxy.suverse.io](https://www.zero.xyz/host/proxy.suverse.io/llms.txt)
