GET
/api/external/v1/image-generationList Generated Images
Retrieves the authenticated user's generated images with temporary S3 URLs. URLs are valid for 2 hours after retrieval.
Request URL
plaintext
https://api.genaerial.com/api/external/v1/image-generationQuery Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
page(optional) | integer | Optional | Zero-indexed page number for pagination. Default: |
size(optional) | integer | Optional | Number of results per page (minimum: 1). Default: |
sort(optional) | array | Optional | Sort criteria in the format "property,(asc|desc)". Example: "createdAt,desc" |
Responses
200OK
application/jsonPaginated collection of generated images.
json
{
"content": [
{
"id": "img_abc123",
"url": "https://s3.amazonaws.com/...",
"coordinates": {
"latitude": 40.6892,
"longitude": -74.0445
},
"resolution": "FHD",
"createdAt": "2026-01-15T10:30:00Z"
}
],
"totalElements": 42,
"totalPages": 3,
"page": 0,
"size": 20
}401Unauthorized
Invalid or missing API key.
Code Examples
bash
curl -X GET "https://api.genaerial.com/api/external/v1/image-generation?page=0&size=20" \
-H "x-api-key: YOUR_API_KEY"