Skip to main content
POST
/
generic
/
data
/
generate
/
animal
Generate synthetic animal data
curl --request POST \
  --url https://apix.spotzee.com/api/ext/generic/data/generate/animal \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/x-www-form-urlencoded' \
  --data count=10 \
  --data locale=en \
  --data seed=12345 \
  --data method=profile
{
  "status": "success",
  "data": {
    "animals": [
      {
        "method": "profile",
        "value": "dog",
        "type": "dog",
        "petName": "Coco",
        "dog": "Irish Water Spaniel",
        "cat": "Singapura",
        "bird": "Buller's Shearwater",
        "fish": "Mandarin fish",
        "horse": "Swedish Warmblood",
        "rabbit": "Florida White",
        "rodent": "Cuscomys ashanika",
        "bear": "Asian black bear",
        "lion": "Northeast Congo Lion",
        "cetacean": "Spinner Dolphin",
        "cow": "Brava",
        "crocodilia": "Philippine Crocodile",
        "insect": "Pyramid ant",
        "snake": "Eyelash viper"
      }
    ],
    "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.

Authorizations

Authorization
string
header
required

Bearer token authentication. Use format: Bearer YOUR_API_KEY

Body

application/x-www-form-urlencoded
count
string

Number of animal records 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"

method
enum<string>

Animal generation method. Defaults to profile.

Available options:
profile,
bear,
bird,
cat,
cetacean,
cow,
crocodilia,
dog,
fish,
horse,
insect,
lion,
petName,
rabbit,
rodent,
snake,
type
Example:

"profile"

Response

Successfully generated animal data

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