ImageAPI Connect

High-performance image processing & CDN delivery infrastructure.

● System Operational

API Reference (v2.1)

Authentication is required via Authorization: Bearer header for all requests. Rate limit: 5000 req/hour.

GET /v1/images/list

Retrieves a paginated list of stored image objects associated with the account.

Parameters

NameTypeDescription
limitintMax items (default: 20)
offsetintPagination cursor

Response Example

{
  "data": [
    { "id": "img_8x92m", "url": "https://cdn.imagesapiconnect.../8x92m.jpg" },
    { "id": "img_k29s1", "url": "https://cdn.imagesapiconnect.../k29s1.png" }
  ],
  "count": 2
}
POST /v1/images/process

Uploads an image for asynchronous processing (resize, crop, optimize).

Content-Type: multipart/form-data

Response Example

{
  "job_id": "job_123456789",
  "status": "processing",
  "estimated_time_ms": 120
}
GET /v1/cdn/health

Check the health status of the nearest CDN edge node.

Response Example

{
  "status": "ok",
  "region": "eu-central-1",
  "latency": "14ms"
}
DELETE /v1/images/{id}

Permanently removes an image and clears the CDN cache.