# Timestamp Return the current server time in UTC RFC3339 format and Unix seconds. This is a paid API service exposed by Server402 for AI agents, MCP clients, OpenAPI importers, and applications. Call the endpoint once without payment to receive HTTP 402 payment instructions, complete payment, then retry with the returned payment token or x402 signature. ## Invocation - Service ID: `timestamp` - Canonical service ID: `timestamp` - Method: `GET` - Endpoint: `https://aivps.lat/api/tools/timestamp` - Service page: https://aivps.lat/services/timestamp - OpenAPI: https://aivps.lat/openapi.json - Catalog search: https://aivps.lat/api/catalog/search?q=timestamp - MCP endpoint: https://aivps.lat/mcp - MCP tool: `timestamp` ## Pricing And Payment - Price: USD 0.03 - Billing mode: `per_call` - Max calls per payment: `1` - Payment provider: `x402_facilitator` - Payment flow: call without payment, receive `402 Payment Required`, pay, then retry with `X-Payment-Token` or `PAYMENT-SIGNATURE`. - Payment hint: Create a payment with POST /api/payments using serviceId="timestamp", then pass the returned token in X-Payment-Token or MCP paymentToken. ## Use Cases - Get current UTC server time - Generate timestamps for logs or signatures - Check API availability with a cheap read-only call ## Keywords time, timestamp, utc, unix, clock ## Input Schema ```json { "properties": {}, "type": "object" } ``` ## Output Schema ```json { "properties": { "isoTime": { "format": "date-time", "type": "string" }, "unix": { "type": "integer" } }, "type": "object" } ``` ## Example Request ```json {} ``` ## Example Response ```json { "isoTime": "2026-05-26T00:00:00Z", "unix": 1779753600 } ```