4 complete endpoints for all your fake data needs
Integrating our API is quick and intuitive
4 available endpoints: user, product, company, text. Each with specific data.
Access URLs in browser or use Postman to see the responses.
Use fetch(), axios or any HTTP client in your application.
Quick implementations in your favorite languages
curl -X GET "https://dnzdev.xyz/api/fake/user" \
-H "Content-Type: application/json"
curl -X GET "https://dnzdev.xyz/api/fake/company" \
-H "Content-Type: application/json"
curl -X GET "https://dnzdev.xyz/api/fake/text?words=50" \
-H "Content-Type: application/json"
// Generate fake user
const userResponse = await fetch('https://dnzdev.xyz/api/fake/user');
const userData = await userResponse.json();
// Generate fake product
const productResponse = await fetch('https://dnzdev.xyz/api/fake/product');
const productData = await productResponse.json();
// Generate fake company
const companyResponse = await fetch('https://dnzdev.xyz/api/fake/company');
const companyData = await companyResponse.json();
// Generate fake text (30 words)
const textResponse = await fetch('https://dnzdev.xyz/api/fake/text?words=30');
const textData = await textResponse.json();
import requests
# Generate fake user
user_response = requests.get('https://dnzdev.xyz/api/fake/user')
user_data = user_response.json()
# Generate fake product
product_response = requests.get('https://dnzdev.xyz/api/fake/product')
product_data = product_response.json()
# Generate fake company
company_response = requests.get('https://dnzdev.xyz/api/fake/company')
company_data = company_response.json()
# Generate fake text (100 words)
text_response = requests.get('https://dnzdev.xyz/api/fake/text?words=100')
text_data = text_response.json()
4 powerful endpoints for all your fake data needs. Check real-time status!
Base URL:
https://dnzdev.xyz/api