Lorem Ipsum Utilities

Generate Addresses

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.

API Endpoint

GET /v1/lorem/addresses

Code Examples

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)

Use via MCP

Add to your AI agent

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"
      }
    }
  }
}

Learn more about MCP setup →

FAQ

How do I generate multiple addresses at once?

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.

What format do the generated addresses use?

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.

Can I generate addresses for specific states or regions?

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.

How does this work with MCP in Cursor or other AI tools?

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.

Are these real addresses or completely fake?

These are completely fictional placeholder addresses designed for development and testing. They follow realistic formatting but don't correspond to actual locations.

Try Generate Addresses Now

Get your free API key and start using Generate Addresses in seconds.

Get Free API Key