GET
/
api
/
enhanced-images
/
{id}
/
Fetch individual enhanced image
curl --request GET \
  --url https://backend.tensorpix.ai/api/enhanced-images/{id}/ \
  --header 'Authorization: <api-key>'
{
  "id": 123,
  "name": "<string>",
  "original_image": 123,
  "width": 8208,
  "height": 8208,
  "size": 4611686018427388000,
  "file": "<string>",
  "owner": "[email protected]",
  "thumbnail": "<string>"
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Path Parameters

id
integer
required

Response

id
integer
required
name
string
required

Media name

Maximum length: 1024
original_image
integer
required
owner
string<email>
required

Email of the user who enhanced the image.

thumbnail
string<uri>
required

URL to a thumbnail of the enhanced image.

width
integer | null

Width in pixels of the image.

Required range: 32 <= x <= 16384
height
integer | null

Height in pixels of the image.

Required range: 32 <= x <= 16384
size
integer | null

Size of the media in bytes

Required range: 1 <= x <= 9223372036854776000
file
string<uri> | null

URL to the image file.