GET
/
api
/
enhanced-images
/
List all enhanced images
curl --request GET \
  --url https://backend.tensorpix.ai/api/enhanced-images/ \
  --header 'Authorization: <api-key>'
{
  "count": 123,
  "next": "http://api.example.org/accounts/?offset=400&limit=100",
  "previous": "http://api.example.org/accounts/?offset=200&limit=100",
  "results": [
    {
      "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"

Query Parameters

limit
integer

Number of results to return per page.

offset
integer

The initial index from which to return the results.

Response

count
integer
Example:

123

next
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=400&limit=100"

previous
string<uri> | null
Example:

"http://api.example.org/accounts/?offset=200&limit=100"

results
object[]