curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/system \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile \
--data extension=txt \
--data mimeType=application/json \
--data extensionCount=1 \
--data extensionCountMin=1 \
--data extensionCountMax=2 \
--data interfaceType=en \
--data interfaceSchema=pci \
--data includeYear=false \
--data includeNonStandard=false{
"status": "success",
"data": {
"systems": [
{
"method": "profile",
"value": "sample_config.json",
"commonFileExt": "json",
"commonFileName": "sample_config.txt",
"commonFileType": "text",
"cron": "15 8 * * 1",
"directoryPath": "/workspace/assets",
"fileExt": "json",
"fileName": "sample_config.json",
"filePath": "/workspace/assets/sample_config.json",
"fileType": "application",
"mimeType": "application/json",
"networkInterface": "enp5s0f1d0",
"semver": "1.15.2",
"extension": "txt",
"mimeTypeInput": "application/json",
"extensionCount": 1,
"interfaceType": "en",
"interfaceSchema": "pci",
"includeYear": false,
"includeNonStandard": false
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"performance": {
"generationTime": 2,
"itemsGenerated": 1,
"locale": "en"
}
}Generates synthetic computer-system fixtures for testing file, MIME, cron, network-interface, semantic-version, and path handling workflows. Supported methods: profile, commonFileExt, commonFileName, commonFileType, cron, directoryPath, fileExt, fileName, filePath, fileType, mimeType, networkInterface, and semver.
curl --request POST \
--url https://apix.spotzee.com/api/ext/generic/data/generate/system \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data count=10 \
--data locale=en \
--data seed=12345 \
--data method=profile \
--data extension=txt \
--data mimeType=application/json \
--data extensionCount=1 \
--data extensionCountMin=1 \
--data extensionCountMax=2 \
--data interfaceType=en \
--data interfaceSchema=pci \
--data includeYear=false \
--data includeNonStandard=false{
"status": "success",
"data": {
"systems": [
{
"method": "profile",
"value": "sample_config.json",
"commonFileExt": "json",
"commonFileName": "sample_config.txt",
"commonFileType": "text",
"cron": "15 8 * * 1",
"directoryPath": "/workspace/assets",
"fileExt": "json",
"fileName": "sample_config.json",
"filePath": "/workspace/assets/sample_config.json",
"fileType": "application",
"mimeType": "application/json",
"networkInterface": "enp5s0f1d0",
"semver": "1.15.2",
"extension": "txt",
"mimeTypeInput": "application/json",
"extensionCount": 1,
"interfaceType": "en",
"interfaceSchema": "pci",
"includeYear": false,
"includeNonStandard": false
}
],
"generated": 1,
"locale": "en",
"seed": 12345,
"method": "profile"
},
"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 system 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"
System generation method. Defaults to profile.
profile, commonFileExt, commonFileName, commonFileType, cron, directoryPath, fileExt, fileName, filePath, fileType, mimeType, networkInterface, semver "profile"
Optional file extension for commonFileName output. Do not include a leading dot.
16"txt"
Optional MIME type for fileExt output.
128"application/json"
Exact generated extension count for fileName output. Defaults to 1 and is capped at 3.
^[1-9]\d*$"1"
Minimum generated extension count for fileName output. Capped at 3.
^[1-9]\d*$"1"
Maximum generated extension count for fileName output. Capped at 3.
^[1-9]\d*$"2"
Optional network-interface type for networkInterface output.
en, wl, ww "en"
Optional network-interface schema for networkInterface output.
index, slot, mac, pci "pci"
Include a year field when method=cron or profile.
true, false "false"
Allow non-standard cron labels when method=cron or profile.
true, false "false"
Successfully generated system data
success Hide child attributes
Hide child attributes
Resolved system generation method.
profile, commonFileExt, commonFileName, commonFileType, cron, directoryPath, fileExt, fileName, filePath, fileType, mimeType, networkInterface, semver "profile"
Primary generated system fixture value.
"sample_config.json"
Generated common file extension.
"json"
Generated common file name.
"sample_config.txt"
Generated common file type.
"text"
Generated cron expression.
"15 8 * * 1"
Generated directory path fixture.
"/workspace/assets"
Generated file extension.
"json"
Generated file name.
"sample_config.json"
Generated file path fixture.
"/workspace/assets/sample_config.json"
Generated file type.
"application"
Generated MIME type.
"application/json"
Generated network-interface name.
"enp5s0f1d0"
Generated semantic version.
"1.15.2"
Resolved extension input.
"txt"
Resolved MIME type input.
"application/json"
Resolved exact file-name extension count.
1
Resolved minimum file-name extension count.
1
Resolved maximum file-name extension count.
2
Resolved network-interface type.
en, wl, ww "en"
Resolved network-interface schema.
index, slot, mac, pci "pci"
Resolved cron year inclusion flag.
false
Resolved non-standard cron label flag.
false
profile, commonFileExt, commonFileName, commonFileType, cron, directoryPath, fileExt, fileName, filePath, fileType, mimeType, networkInterface, semver Was this page helpful?