x402 List

x402 Protocol Service Directory

timezone-toolkit

Data PAYMENT-READY

payment-ready until 2026-08-19

Timezone converter, world clock, DST-aware date math and meeting scheduler for AI agents. Pay-per-call x402 endpoints (USDC on Base) covering timezone conversion, world clock / now-in-city, city or country to IANA timezone lookup, UTC offsets, batch conversion, calendar-aware date math, public-holiday checks, and cross-timezone meeting-slot finding. IANA/DST-accurate. Also available as a free MCP server (no API key).

Pay from $0.001 to $0.02 per request in USDC on Base, settled onchain via the x402 protocol, no signup, no API key needed.

first settlement 2026-07-19 · $0.08 all-time · settled via coinbase

BASE URL https://timezone-toolkit.agishub.com WEBSITE https://timezone-toolkit.agishub.com ENDPOINTS 8 NETWORK Base ASSET USDC MEMBER SINCE 2026-07-16 MONITORED SINCE 2026-07-16

ASSESSMENT

updated 4h ago

Evidence-backed signals, not a single score. Click any chip for the proof. Measured values stay read-only; unknown is honest.

reliability 99.5%
uptime 24h
0%
uptime 7d
97.5%
uptime 30d
99.5%
uptime 90d
99.5%
response p95
317ms
avg response
270ms
total checks
2,440

Measured on the unpaid 402 handshake, not the paid call. A service can 402 correctly and still fail after payment.

compliance A (14/14)

14 of 14 x402 conformance checks pass. Full checklist below.

jump to compliance checklist

price $0.001 to $0.02 (p9 in Data)
price (min)
$0.001
price (max)
$0.02
category percentile (min)
p9 in Data
category percentile (max)
p40 in Data
endpoints / prices
8 / 2
model
tiered
stability
100%
risk clean

No deterministic risk flag. Risk fires only on an exact blocklist match, or a reserved-brand name with a mismatched verified payTo. Never from low uptime, a high price, or a model guess.

domain age
47d
registrar
Cloudflare, Inc.
hosting
custom
domain created
2026-06-20

Identity facts, not a risk score.

traction $0.085 30d · 2 buyers
volume 30d
$0.085
buyers 30d
2
settlements 30d
6
first settlement
2026-07-19
last settlement
2026-07-27
top buyer share
53% of 30d volume
trend 7d vs 30d
0.00x the 30d daily rate
networks
eip155:8453
volume all-time
$0.08
settlements all-time
6
median settlement 30d
$0.02
max settlement 30d
$0.02
settled via
coinbase ($0.09, 6 tx)

Conservative undercount: only USDC settlements via facilitators we measure are counted. A measured floor, not an estimate.

Top buyer share is a concentration signal, not part of the ranking score.

WHAT IT DOES

ai-derived

Provides timezone conversion, date math, and meeting scheduling services.

category
timezone-service
in
query params
auth
none
timezonedate-mathmeeting-schedulerworld-clock

AI-generated summary. The measured data is never altered by it.

ENDPOINTS

Service endpoints with HTTP method, path, description, pricing, and network
METHOD PATH DESCRIPTION PRICE NETWORK ASSET 402 CHANNEL
GET /paid/convert-batch $0.001 Base USDC header
GET /paid/convert-timezone $0.001 Base USDC header
GET /paid/date-math $0.001 Base USDC header
GET /paid/find-meeting-slots $0.02 Base USDC header
GET /paid/is-holiday $0.001 Base USDC header
GET /paid/lookup-timezone $0.001 Base USDC header
GET /paid/now-in $0.001 Base USDC header
GET /paid/tz-offset $0.001 Base USDC header
8 endpoints

REQUEST / RESPONSE EXAMPLE

An unpaid request to GET /paid/convert-batch returns HTTP 402 with the payment terms. Settle onchain via your facilitator, then retry with the X-Payment header.

// request
curl -i 'https://timezone-toolkit.agishub.com/paid/convert-batch'
// 402 response (captured by monitor) · 8 payloads · click to expand
[
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/convert-batch",
      "mimeType": "",
      "description": "Convert one instant into many target timezones at once (world-clock view)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "to": [
                "America/New_York",
                "Asia/Tokyo"
              ],
              "from": "Europe/Madrid",
              "datetime": "2026-07-09T15:30"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "input": "2026-07-09T15:30",
              "conversions": [
                {
                  "timezone": "America/New_York"
                }
              ]
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "datetime",
                    "from",
                    "to"
                  ],
                  "properties": {
                    "to": {
                      "type": "array"
                    },
                    "from": {
                      "type": "string"
                    },
                    "datetime": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/convert-timezone",
      "mimeType": "",
      "description": "Convert a date/time between two IANA timezones (ISO 8601 or natural language)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "to": "America/New_York",
              "from": "Europe/Madrid",
              "datetime": "2026-07-09T15:30"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "to": {
                "timezone": "America/New_York"
              },
              "from": {
                "timezone": "Europe/Madrid"
              },
              "input": "2026-07-09T15:30"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "datetime",
                    "from",
                    "to"
                  ],
                  "properties": {
                    "to": {
                      "type": "string"
                    },
                    "from": {
                      "type": "string"
                    },
                    "datetime": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/date-math",
      "mimeType": "",
      "description": "Add/subtract time respecting DST, or diff two datetimes across zones."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "datetime": "2026-10-24T12:00",
              "timezone": "Europe/Madrid",
              "operation": {
                "type": "add",
                "unit": "days",
                "amount": 1
              }
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "result": {
                "datetime": "2026-10-25T12:00:00+01:00",
                "timezone": "Europe/Madrid"
              }
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "datetime",
                    "timezone",
                    "operation"
                  ],
                  "properties": {
                    "datetime": {
                      "type": "string"
                    },
                    "timezone": {
                      "type": "string"
                    },
                    "operation": {
                      "type": "object",
                      "description": "{type:\"add\",amount,unit} or {type:\"diff\",to_datetime,to_timezone?}."
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "20000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/find-meeting-slots",
      "mimeType": "",
      "description": "Find overlapping working-hour meeting slots across timezones (excludes weekends & holidays)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "duration": 60,
              "date_range": {
                "end": "2026-07-17",
                "start": "2026-07-13"
              },
              "participants": [
                {
                  "timezone": "Europe/Madrid"
                },
                {
                  "timezone": "America/New_York"
                }
              ]
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "count": 1,
              "slots": [
                {
                  "start_utc": "2026-07-13T13:00:00.000Z"
                }
              ],
              "duration_minutes": 60
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "participants",
                    "duration",
                    "date_range"
                  ],
                  "properties": {
                    "duration": {
                      "type": "number",
                      "description": "Minutes."
                    },
                    "date_range": {
                      "type": "object",
                      "description": "{ start:\"YYYY-MM-DD\", end:\"YYYY-MM-DD\" }."
                    },
                    "participants": {
                      "type": "array",
                      "description": "Each: { timezone, working_hours?, country? }."
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/is-holiday",
      "mimeType": "",
      "description": "Whether a date is a public holiday in a country (ISO 3166-1 alpha-2)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "date": "2026-12-25",
              "country_code": "ES"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "date": "2026-12-25",
              "isHoliday": true,
              "countryCode": "ES"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "date",
                    "country_code"
                  ],
                  "properties": {
                    "date": {
                      "type": "string"
                    },
                    "country_code": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/lookup-timezone",
      "mimeType": "",
      "description": "Resolve a city or country name to its IANA timezone(s). E.g. 'Delhi' -> Asia/Kolkata."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "city_or_country": "Delhi"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "query": "Delhi",
              "matches": [
                {
                  "country": "India",
                  "timezone": "Asia/Kolkata"
                }
              ]
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "city_or_country"
                  ],
                  "properties": {
                    "city_or_country": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/now-in",
      "mimeType": "",
      "description": "Current local time in an IANA timezone (offset, abbreviation, DST flag)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "timezone": "Asia/Tokyo"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "isDST": false,
              "datetime": "2026-07-12T18:00:00+09:00",
              "timezone": "Asia/Tokyo",
              "utcOffset": "+09:00"
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "timezone"
                  ],
                  "properties": {
                    "timezone": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  },
  {
    "error": "Payment required",
    "accepts": [
      {
        "asset": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
        "extra": {
          "name": "USD Coin",
          "version": "2"
        },
        "payTo": "0xF41DaF0BA8D5f5915d927e005b2EB2dEd7b6feCF",
        "amount": "1000",
        "scheme": "exact",
        "network": "eip155:8453",
        "maxTimeoutSeconds": 300
      }
    ],
    "resource": {
      "url": "https://timezone-toolkit.agishub.com/paid/tz-offset",
      "mimeType": "",
      "description": "Exact UTC offset of a timezone at an instant (DST-aware; handles :30 / :45 zones)."
    },
    "extensions": {
      "bazaar": {
        "info": {
          "input": {
            "body": {
              "timezone": "Asia/Kolkata"
            },
            "type": "http",
            "method": "GET",
            "bodyType": "json"
          },
          "output": {
            "type": "json",
            "example": {
              "isDST": false,
              "timezone": "Asia/Kolkata",
              "utcOffset": "+05:30",
              "offsetMinutes": 330
            }
          }
        },
        "schema": {
          "type": "object",
          "$schema": "https://json-schema.org/draft/2020-12/schema",
          "required": [
            "input"
          ],
          "properties": {
            "input": {
              "type": "object",
              "required": [
                "type",
                "method",
                "bodyType",
                "body"
              ],
              "properties": {
                "body": {
                  "type": "object",
                  "required": [
                    "timezone"
                  ],
                  "properties": {
                    "instant": {
                      "type": "string",
                      "description": "Optional; defaults to now."
                    },
                    "timezone": {
                      "type": "string"
                    }
                  }
                },
                "type": {
                  "type": "string",
                  "const": "http"
                },
                "method": {
                  "enum": [
                    "GET"
                  ],
                  "type": "string"
                },
                "bodyType": {
                  "enum": [
                    "json",
                    "form-data",
                    "text"
                  ],
                  "type": "string"
                }
              },
              "additionalProperties": false
            },
            "output": {
              "type": "object",
              "required": [
                "type"
              ],
              "properties": {
                "type": {
                  "type": "string"
                },
                "example": {
                  "type": "object"
                }
              }
            }
          }
        }
      }
    },
    "x402Version": 2
  }
]

OVER TIME

All charts use the 7d selector; each series spans only the dates it has data for. Every series is also served as JSON at /api/v1/services/timezone-toolkit/price, /scores, /volume and /buyers. On-chain volume and distinct buyers are measured over the service's settlement address and are a conservative undercount (only settlements that reach a measured facilitator are counted). The on-chain series roll up hourly, so the latest day can be up to about an hour behind; distinct buyers are counted per payout address, so a service that settles to more than one address is an upper bound.

UPTIME
08-12 · uptime 82.8% · 173ms avg08-13 · uptime 0.0%08-07 · uptime 100.0% · 262ms avg08-08 · uptime 100.0% · 216ms avg08-09 · uptime 100.0% · 181ms avg08-10 · uptime 100.0% · 220ms avg08-11 · uptime 100.0% · 190ms avg08-12 · uptime 82.8% · 173ms avg08-13 · uptime 0.0%08-0708-13
7d UPTIME 97.5%
RESPONSE TIME
08-07 · 262ms avg08-07 · 262ms avg08-08 · 216ms avg08-08 · 216ms avg08-09 · 181ms avg08-09 · 181ms avg08-10 · 220ms avg08-10 · 220ms avg08-11 · 190ms avg08-11 · 190ms avg08-12 · 173ms avg08-12 · 173ms avg08-13 · 0ms avg08-13 · 0ms avg08-0708-13
AVG RESP 270ms
PRICE (captured 402, USD)
08-06 · $0.00108-13 · $0.001$0.00108-0608-13

Median across 8 endpoints. Use the selector to isolate one.

SUB-SCORES (uptime + x402 compliance)
08-06 uptime: 100.0% compliance: 100% checks08-07 uptime: 100.0% compliance: 100% checks08-08 uptime: 100.0% compliance: 100% checks08-09 uptime: 100.0% compliance: 100% checks08-10 uptime: 100.0% compliance: 100% checks08-11 uptime: 100.0% compliance: 100% checks08-12 uptime: 99.6% compliance: 100% checks08-13 uptime: 99.5% compliance: 100% checksuptimecompliance08-0608-13

checklist grew 11->14 on 2026-07-28; a step here is a metric change, not a regression

PILLARS OVER TIME (measured)

Measured site and economics pillars from the assessment history, so the latest value shown elsewhere on this page reads as a point on a trend rather than a permanent state.

VOLUME (on-chain settlement, USD)
no on-chain volume in the last 7d
DISTINCT BUYERS
no distinct buyers in the last 7d

COMPLIANCE

14/14 checks pass · grade A

last 402 captured 2026-07-16 · last up 2026-08-12

  • 402 payload captured
  • accepts[] array present
  • payTo address recoverable
  • payTo at accepts[0].payTo (conformant shape)
  • payTo is a valid on-chain address
  • atomic price declared
  • atomic price in a sane range
  • asset (token) address declared
  • network resolves to CAIP-2
  • payment scheme declared
  • served over HTTPS
  • declares the current x402 version (2)
  • EIP-712 domain parameters present on every EVM entry
  • x402 v2 envelope delivered in the payment-required header

SITE PILLARS

  • homepage reachable
  • openapi doc
  • pricing page
  • llms.txt
  • robots.txt
  • terms page
recent checks (18) live · click to expand
TIME STATUS RESP CAUSE
○ DOWN 12ms network: SSRF: resolved to a private address
○ DOWN 66ms network: SSRF: resolved to a private address
○ DOWN 15ms network: SSRF: resolved to a private address
○ DOWN 10ms network: SSRF: resolved to a private address
○ DOWN 29ms network: SSRF: resolved to a private address
○ DOWN 18ms network: SSRF: resolved to a private address
○ DOWN 64ms network: SSRF: resolved to a private address
○ DOWN 39ms network: SSRF: resolved to a private address
○ DOWN 69ms network: SSRF: resolved to a private address
○ DOWN 80ms network: SSRF: resolved to a private address
○ DOWN 80ms network: SSRF: resolved to a private address
○ DOWN 50ms network: SSRF: resolved to a private address
○ DOWN 58ms network: SSRF: resolved to a private address
● OK 137ms
● OK 189ms
● OK 147ms
● OK 145ms
● OK 368ms

EMBED THIS BADGE

Show that timezone-toolkit is monitored on x402-list. Paste this on your site or README, it links back to this live listing.

timezone-toolkit listed on x402-list
status
timezone-toolkit uptime on x402-list
live uptime
// HTML
<a href="https://x402-list.com/services/timezone-toolkit?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/timezone-toolkit.svg" alt="timezone-toolkit listed on x402-list" height="28">
</a>
// Markdown
[![timezone-toolkit on x402-list](https://x402-list.com/badge/timezone-toolkit.svg)](https://x402-list.com/services/timezone-toolkit?utm_source=badge&utm_medium=referral&utm_campaign=embed)
// HTML · live uptime variant
<a href="https://x402-list.com/services/timezone-toolkit?utm_source=badge&utm_medium=referral&utm_campaign=embed">
  <img src="https://x402-list.com/badge/timezone-toolkit.svg?data=uptime" alt="timezone-toolkit uptime on x402-list" height="28">
</a>

RUN THIS SERVICE?

Keep this listing accurate: propose changes to the name, description, website, category or add new endpoints to monitor. Ownership is verified with a domain proof and every change is reviewed manually; measured data stays read-only.

[ update this listing ]

Earn the verified tier: x402list pays a real call to this endpoint and, if it delivers, the service is delivery-verified. The fee covers the cost of the probe, not the badge; there is no refund if the call does not deliver. Agent and API only, no in-browser signing. See /api.

[ verify this service ($0.25) ]

To request delisting, email info@x402-list.com or update your listing at /services/timezone-toolkit/update.