CLOB Read (Public)
Get Server Time
Return the current server time as a bare Unix-seconds integer.
PM-CLOB canonical: Polymarket emits GET /time as a bare JSON
integer (1779147906), NOT as an object
({"server_time":1779147906}). py-clob-client does
int(response.text) on this surface; the object form TypeErrors
on every startup health check.
Read the value with int(resp.text) (what py-clob-client does) or
resp.json() (which returns the int directly because the body
parses as a JSON integer).
GET
Get Server Time
Response
Successful Response
The response is of type integer.