Static Site Generation (SSG) Example

https://httpbin.org/get response (Static)

IP (at build time): 34.127.85.94

User Agent (at build time): node

Server Time (at build): 2025-03-14T02:42:17.834Z

Time of Request (Client-side):

View Full Response
{
  "args": {},
  "headers": {
    "Accept": "*/*",
    "Accept-Encoding": "br, gzip, deflate",
    "Accept-Language": "*",
    "Host": "httpbin.org",
    "Sec-Fetch-Mode": "cors",
    "User-Agent": "node",
    "X-Amzn-Trace-Id": "Root=1-67d39789-14d77b3a290542452cd5a528"
  },
  "origin": "34.127.85.94",
  "url": "https://httpbin.org/get"
}

This page demonstrates Static Site Generation (SSG). The data above was fetched at build time and will remain the same until the site is rebuilt. Refreshing the page will not change the server time or data. Note the difference between the build time and client time to confirm SSG behavior.

Back to Home