Fake Data Generator
Generate realistic fake data — emails, names, addresses, IPs, and more.
GET
1 credit
/v1/fake-data
curl "https://devtools.toolkitapi.io/v1/fake-data?type=email&count=3"
import httpx
resp = httpx.get(
"https://devtools.toolkitapi.io/v1/fake-data?type=email&count=3",
)
print(resp.json())
const resp = await fetch("https://devtools.toolkitapi.io/v1/fake-data?type=email&count=3", {
});
const data = await resp.json();
console.log(data);
# See curl example
Response
200 OK
{
"type": "email",
"count": 3,
"data": [
"[email protected]",
"[email protected]",
"[email protected]"
]
}
Try It Live
Live Demo
Response
Description
Generate realistic fake data — emails, names, addresses, IPs, and more.
How to Use
1
1. Send a GET request with the `type` parameter set to the kind of data you need.
2
2. Optionally set `count` to generate multiple items (up to 100).
About This Tool
Fake Data Generator produces realistic mock data using the Faker library. Choose from 10 data types and generate up to 100 items per request. Useful for populating test databases, building demos, or generating sample data for documentation.
Why Use This Tool
- Test data — Populate databases with realistic mock records
- Demo environments — Fill UIs with believable sample data
- API testing — Generate varied inputs for integration tests
- Documentation — Create example payloads with realistic values
Frequently Asked Questions
What data types are available?
`email`, `name`, `address`, `phone`, `company`, `url`, `ipv4`, `ipv6`, `mac_address`, `user_agent`.
Is the data truly random?
Each request generates fresh random data using the Faker library. Data is realistic but entirely fictitious — it won't match real people or addresses.
Start using Fake Data Generator now
Get your free API key and make your first request in under a minute.