Skip to main content
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,
      "owner": "[email protected]",
      "thumbnail": "<string>",
      "width": 8208,
      "height": 8208,
      "size": 4611686018427388000,
      "file": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

Token-based authentication with required prefix "Token"

Query Parameters

created_at_after
string<date>
created_at_before
string<date>
limit
integer

Number of results to return per page.

name
string
offset
integer

The initial index from which to return the results.

ordering
string

Which field to use when ordering 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[]