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, ores(random if omitted). Each address includesstreet,city,zip,state,country, andcountryCode. 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) andpassphrase(word-based, 3–10 words, customseparator). Response includesstrength(weak/moderate/strong/very_strong) and Shannonentropyin bits. - Fixed POST /token: replaced
Math.random()withcrypto.randomIntfor 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
addressmodule, 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.