Skip to main content
POST
/
api
/
ext
/
generic
/
data
/
generate
/
contact
Generate fake contact data
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
count
string

Number of contacts to generate (1-100). Passed as string but must be numeric.

Pattern: ^[1-9]\d?$|^100$
Example:

"10"

locale
string

Locale for generated data (e.g., en, es, fr, de, pt_BR, zh_CN)

Example:

"en"

seed
string

Seed for deterministic generation. Same seed produces same results.

Example:

"12345"

Response

Successfully generated contact data

status
enum<string>
required
Available options:
success
data
object
required