Photo

Access and manipulate image data with support for multiple formats, including metadata extraction, format conversion, and basic image processing operations, suitable for handling profile pictures and general image management tasks.

Get a random photo

Get a random photo from a large list of photos

GET
/ photo

Response

{
  "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"
  ]
}

Authorizations

Authorization
header
required

Authentication token in the format "Bearer <token>"

Response

200 - application/json
url
string
required

The URL of the photo

Example: https://example.com/photo.jpg

Try it out

Don't have a key? Sign up to get one for free.

Response

Click "Send Request" to see the response...