curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/internet \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=account \
--data firstName=Jane \
--data lastName=Smith \
--data emailDomain=example.com \
--data useExampleEmail=true \
--data allowSpecialCharacters=false \
--data 'emojiTypes=food,nature' \
--data 'httpStatusTypes=success,serverError' \
--data ipv4CidrBlock=192.168.0.0/16 \
--data ipv4Network=private-a \
--data macSeparator=colon \
--data passwordLength=20 \
--data passwordMemorable=false \
--data passwordPrefix=test- \
--data passwordCharacterSet=alphanumeric \
--data urlAppendSlash=false \
--data urlProtocol=https \
--data jwtRefDate=2024-01-01T00:00:00.000Z{
"status": "success",
"data": {
"internet": [
{
"method": "account",
"value": "jane.smith@example.com",
"email": "jane.smith@example.com",
"username": "Jane.Smith42",
"displayName": "Jane_Smith42",
"url": "https://example.net"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "account"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic account, web, network, HTTP, domain, token fixture, emoji, and user-agent data. The default account method returns a reserved-domain email address plus username, display name, and URL fields.
Supported methods: account, displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, jwt, jwtAlgorithm, mac, password, port, protocol, url, userAgent, and username. Generated password-like strings and token fixtures are for test data only and are not suitable for credentials or authentication.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/internet \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=account \
--data firstName=Jane \
--data lastName=Smith \
--data emailDomain=example.com \
--data useExampleEmail=true \
--data allowSpecialCharacters=false \
--data 'emojiTypes=food,nature' \
--data 'httpStatusTypes=success,serverError' \
--data ipv4CidrBlock=192.168.0.0/16 \
--data ipv4Network=private-a \
--data macSeparator=colon \
--data passwordLength=20 \
--data passwordMemorable=false \
--data passwordPrefix=test- \
--data passwordCharacterSet=alphanumeric \
--data urlAppendSlash=false \
--data urlProtocol=https \
--data jwtRefDate=2024-01-01T00:00:00.000Z{
"status": "success",
"data": {
"internet": [
{
"method": "account",
"value": "jane.smith@example.com",
"email": "jane.smith@example.com",
"username": "Jane.Smith42",
"displayName": "Jane_Smith42",
"url": "https://example.net"
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "account"
},
"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 internet records 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"
Internet generation method. Defaults to account.
account, displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, jwt, jwtAlgorithm, mac, password, port, protocol, url, userAgent, username "account"
Optional first name used by account, email, username, and displayName methods.
80"Jane"
Optional last name used by account, email, username, and displayName methods.
80"Smith"
Domain to use for generated email output. Do not combine with useExampleEmail=true.
"example.com"
Use reserved example email domains for generated email output.
true, false "true"
Allow special characters in generated email local parts.
true, false "false"
Comma-separated emoji categories to include.
"food,nature"
Comma-separated HTTP status categories to include.
"success,serverError"
CIDR block for generated IPv4 output. Do not combine with ipv4Network.
"192.168.0.0/16"
Well-known IPv4 network alias. Do not combine with ipv4CidrBlock.
any, loopback, private-a, private-b, private-c, test-net-1, test-net-2, test-net-3, link-local, multicast "private-a"
MAC address separator style.
colon, hyphen, none "colon"
Length for generated password-like fixture strings, from 1 to 128.
^[1-9]\d*$"20"
Generate a more memorable password-like fixture string.
true, false "false"
Prefix for generated password-like fixture strings.
64"test-"
Allowlisted character set for generated password-like fixture strings.
word, alphanumeric, alpha, numeric, symbol "alphanumeric"
Append a trailing slash to generated URLs.
true, false "false"
Protocol for generated URL output.
http, https "https"
Reference date for generated synthetic token fixture output.
"2024-01-01T00:00:00.000Z"
Successfully generated internet data
success Hide child attributes
Hide child attributes
Resolved internet generation method.
account, displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, jwt, jwtAlgorithm, mac, password, port, protocol, url, userAgent, username "account"
Scalar generated value for single-field internet methods.
"jane.smith@example.com"
Synthetic token fixture with a random signature; not valid for authentication.
Synthetic password-like fixture string; not suitable for real credentials.
account, displayName, domainName, domainSuffix, domainWord, email, emoji, exampleEmail, httpMethod, httpStatusCode, ip, ipv4, ipv6, jwt, jwtAlgorithm, mac, password, port, protocol, url, userAgent, username Was this page helpful?