Skip to content

API

On this page

Time

Read Paymos server time before signing requests and compensate safely for clock drift.

GET/v1/time

Returns the current Paymos server time as Unix seconds. This endpoint is public and does not require an API key or HMAC signature.

Use it to calculate the offset between your server and Paymos before signing API requests. Apply the offset locally; do not call this endpoint before every request.

Response (200 OK)

{
  "server_time": 1783857600
}

server_time is an integer Unix timestamp in seconds.