curl --request POST \
--url https://app.spotzee.com/api/ext/generic/data/generate/contact \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345{
"status": "success",
"data": {
"contacts": [
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Jane Smith",
"email": "jane.smith@company.com",
"phone": "+1-555-987-6543",
"company": "Business Inc",
"website": "https://example.com"
}
],
"generated": 1,
"locale": "en",
"seed": "12345"
}
}Generates business contact information including names, emails, phone numbers, and company details. Perfect for testing CRM systems and contact management features.
curl --request POST \
--url https://app.spotzee.com/api/ext/generic/data/generate/contact \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345{
"status": "success",
"data": {
"contacts": [
{
"id": "550e8400-e29b-41d4-a716-446655440001",
"name": "Jane Smith",
"email": "jane.smith@company.com",
"phone": "+1-555-987-6543",
"company": "Business Inc",
"website": "https://example.com"
}
],
"generated": 1,
"locale": "en",
"seed": "12345"
}
}Bearer token authentication. Use format: Bearer YOUR_API_KEY
Number of contacts to generate (1-100). Passed as string but must be numeric.
^[1-9]\d?$|^100$"10"
Locale for generated data (e.g., en, es, fr, de, pt_BR, zh_CN)
"en"
Seed for deterministic generation. Same seed produces same results.
"12345"
Successfully generated contact data
success Hide child attributes
Was this page helpful?