Invocation
- Service ID
timestamp- Method
GET- Endpoint
/api/tools/timestamp- Legacy Endpoint
none- MCP Tool
timestamp- Price
- USD 0.03
Paid API service
Return the current server time in UTC RFC3339 format and Unix seconds.
timestampGET/api/tools/timestampnonetimestampCall the endpoint without payment to receive HTTP 402 metadata. After payment is complete, retry with X-Payment-Token, an x402 payment signature, or MCP paymentToken.
Create a payment with POST /api/payments using serviceId="timestamp", then pass the returned token in X-Payment-Token or MCP paymentToken.
{
"exampleRequest": {},
"exampleResponse": {
"isoTime": "2026-05-26T00:00:00Z",
"unix": 1779753600
},
"inputSchema": {
"properties": {},
"type": "object"
},
"outputSchema": {
"properties": {
"isoTime": {
"format": "date-time",
"type": "string"
},
"unix": {
"type": "integer"
}
},
"type": "object"
}
}