Data
Random dog image (Dog CEO) API
Return one or more random dog photos from the Dog CEO API (dog.ceo), optionally filtered to a breed, with the inferred breed/sub-breed. Answers 'random dog picture','show me a husky','a picture of a poodle','5 random dogs'.
Price$0.01per request
MethodPOST
Route/v1/data/misc-dog-image
StatusLive
MIME typeapplication/json
Rate limit60/minute
Cache3600s public
datadogimagedog-ceobreedphotoanimalpets
API URL
Integration docshttps://x402.hexl.dev/v1/data/misc-dog-imageExample request
{
"breed": "hound/afghan",
"count": 1
}Example response
{
"status": "success",
"count": 1,
"images": [
{
"imageUrl": "https://images.dog.ceo/breeds/hound-afghan/n02088094_1003.jpg",
"breed": "hound",
"subBreed": "afghan"
}
]
}Input schema
{
"type": "object",
"required": [],
"properties": {
"breed": {
"type": "string",
"examples": [
"hound/afghan"
]
},
"count": {
"type": "number",
"default": 1,
"examples": [
1
]
}
}
}Output schema
{
"type": "object",
"additionalProperties": true
}