curl --request POST \
--url https://apix.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 \
--data includePhone=true \
--data includeSocial=false \
--data includeAccount=false \
--data useExampleEmail=false \
--data allowSpecialCharacters=false \
--data phoneStyle=international \
--data emailDomain=example.com{
"status": "success",
"data": {
"contacts": [
{
"email": "jane.smith@company.com",
"website": "https://example.com",
"phone": "+1-555-987-6543",
"username": "jane.smith",
"displayName": "Jane_Smith"
}
],
"generated": 1,
"locale": "en",
"seed": 12345
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic contact information including email addresses, website URLs, optional phone numbers, optional account identifiers, display names, and optional social profile URLs for testing contact workflows. Supports reserved example-domain email output, custom email domains, optional special characters in email local parts, and selectable phone number styles.
curl --request POST \
--url https://apix.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 \
--data includePhone=true \
--data includeSocial=false \
--data includeAccount=false \
--data useExampleEmail=false \
--data allowSpecialCharacters=false \
--data phoneStyle=international \
--data emailDomain=example.com{
"status": "success",
"data": {
"contacts": [
{
"email": "jane.smith@company.com",
"website": "https://example.com",
"phone": "+1-555-987-6543",
"username": "jane.smith",
"displayName": "Jane_Smith"
}
],
"generated": 1,
"locale": "en",
"seed": 12345
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Documentation Index
Fetch the complete documentation index at: https://docs.spotzee.com/llms.txt
Use this file to discover all available pages before exploring further.
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"
Include a generated phone number on each contact.
true, false "true"
Include generated social profile URLs on each contact.
true, false "false"
Include generated username and display-name fields on each contact.
true, false "false"
Use reserved example email domains for generated email addresses.
true, false "false"
Allow special characters in generated email local parts.
true, false "false"
Phone number style when includePhone is true.
human, national, international "international"
Domain to use for generated email addresses. Do not combine with useExampleEmail=true.
"example.com"
Successfully generated contact data
success Hide child attributes
Hide child attributes
Was this page helpful?