Back to APIs
FakerAPI
FakerAPI generates realistic fake data on demand — persons, addresses, companies, credit cards, images, and more — no auth required.
Base URL
https://fakerapi.it/api/v2fake datatestingseedmockno auth
Endpoints
GET
/personsGenerate fake person records.
const response = await fetch("https://fakerapi.it/api/v2/persons?_quantity=3&_locale=en_US", {
method: "GET",
headers: {
"Content-Type": "application/json"
}
});
const data = await response.json();
console.log(data);Response Preview
{
"status": "OK",
"total": 3,
"data": [{
"id": 1,
"firstname": "Emma",
"lastname": "Johnson",
"email": "emma.johnson@example.com",
"phone": "+1-555-234-5678",
"birthday": "1992-08-14",
"address": { "city": "Denver", "country": "United States" }
}]
}