Static Site Generation (SSG) Example

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

IP (at build time): 35.185.222.176

User Agent (at build time): node

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

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-67d39780-703e14e8469a9c1d08a4c771"
  },
  "origin": "35.185.222.176",
  "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