Photo
Access and process images with support for multiple formats, metadata extraction, format conversion, and basic image operations for general image management.
Get a random photo
Get a random photo from a large list of photos
GET
/
photo
Response Schema
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the photo",
"example": "https://example.com/photo.jpg"
}
},
"required": [
"url"
]
}
curl --request GET \
--url "https://www.apikiss.com/api/v1/photo" \
--header 'Authorization: Bearer <token>'
{
"type": "object",
"properties": {
"url": {
"type": "string",
"description": "The URL of the photo",
"example": "https://example.com/photo.jpg"
}
},
"required": [
"url"
]
}
Response
Click "Send Request" to see the response...
Authorizations
Authorization
header
required
Authentication token in the format "Bearer <token>"