Skip to content

4.7.0

API

API v4.7.0 — Address, Password, Token.

  • Added endpoint GET /address: generates 1–10 fictional postal addresses for fr, us, uk, de, or es (random if omitted). Each address includes street, city, zip, state, country, and countryCode. Zip codes are formatted per country conventions.
  • Added endpoint GET /password: generates 1–20 passwords using crypto.randomInt. Two modes: random (character-based, 8–128 chars) with configurable character sets (uppercase, lowercase, digits, symbols, exclude) and passphrase (word-based, 3–10 words, custom separator). Response includes strength (weak / moderate / strong / very_strong) and Shannon entropy in bits.
  • Fixed POST /token: replaced Math.random() with crypto.randomInt for all character-based types, and fixed a truncation bug that silently shortened UUID tokens above a certain length.
  • GET /personal now delegates address generation to the address module, eliminating duplicated data generation logic.

Documentation

  • Added documentation pages for Address, Agent, Headers, IP and Password.
  • Added all 5 new endpoints — Address, Agent, IP, Headers and Password — to the Playground registry and sidebar.
  • Added descriptions for Address, Agent, Headers, IP and Password in the home features section.
  • The endpoint URL in Try panels is now a clickable link that opens in a new tab.
  • Try panels now support URL path parameters (e.g. :country) resolved dynamically from input values.
  • Try panel inputs now display contextual placeholder text.
  • The Playground now shows a direct link to the documentation page of the selected endpoint.
  • Fixed JavaScript code snippet formatting for request bodies in Try panels.