Generates realistic placeholder addresses for testing and development. Access via MCP in AI coding tools like Cursor and Windsurf, or call GET /v1/lorem/addresses directly. Returns structured address data with street, city, state, and ZIP — perfect for populating forms during development without real user data.
curl "https://tinyfn.io/v1/lorem/addresses" \
-H "X-API-Key: YOUR_API_KEY"
const response = await fetch('https://tinyfn.io/v1/lorem/addresses', {
headers: { 'X-API-Key': 'YOUR_API_KEY' }
});
const data = await response.json();
console.log(data);
import requests
response = requests.get('https://tinyfn.io/v1/lorem/addresses',
headers={'X-API-Key': 'YOUR_API_KEY'})
data = response.json()
print(data)
Connect your AI agent (Claude, Cursor, Windsurf, etc.) to TinyFn's lorem ipsum tools:
{
"mcpServers": {
"tinyfn-lorem": {
"url": "https://tinyfn.io/mcp/lorem",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}
Use the count parameter in your request to specify how many addresses to generate. The API returns an array of address objects with all the standard fields.
Each address includes street number and name, city, state abbreviation, and ZIP code in a structured JSON object. All addresses follow realistic US formatting patterns.
The API generates addresses from across the United States. For region-specific testing data, you'll need to filter the results or use a different approach.
AI agents can call this tool directly when you need test addresses for database seeding, form validation, or UI mockups. Just ask for 'generate some test addresses' in your coding session.
These are completely fictional placeholder addresses designed for development and testing. They follow realistic formatting but don't correspond to actual locations.
Get your free API key and start using Generate Addresses in seconds.
Get Free API Key