API reference · Storage

Storage · list

List the account's stored objects, newest first.

GET/v1/storage/objectsfree
view as markdown

Returns up to 200 live objects with their CDN URLs. Deleted objects leave the list but keep their ledger history.

curl https://eroq.ai/v1/storage/objects \
  -H "Authorization: Bearer $EROQ_API_KEY"
/v1/storage/objects
→ GET /v1/storage/objects
Press run — this replays a real exchange from the docs' own data. No key, no request, no charge.

Response

200 · application/json
{
  "object": "list",
  "data": [{
    "id": "0b52…",
    "object": "storage.object",
    "url": "https://store.eroq.ai/acc_…/8c1f2-poster.webp",
    "bytes": 482133,
    "content_type": "image/webp",
    "created_at": "2026-08-25T14:02:11Z"
  }]
}