GET /v1/objects endpoint returns a list of all objects stored in your Virtus Cloud Blob account. You can narrow results by filtering on a prefix and paginate through large collections using a continuation token. Responses from this endpoint are cached for 30 seconds, so very recent uploads may not appear immediately.
Endpoint: GET https://blob.virtuscloud.app/v1/objects
Authentication
Include your API key in theAuthorization header:
Query Parameters
Filter results to only objects whose name begins with this prefix. Must be 3–32 characters long and contain only letters (
a–z, A–Z), digits (0–9), and underscores (_). If omitted, all objects in your account are returned.A pagination token returned by a previous request when there are more results to fetch. Pass this value to retrieve the next page of results. Omit it to start from the beginning.
Example Request
Response
Indicates whether the request succeeded. Returns
"success" on success or "error" on failure.Example Response (30s cache)
This endpoint’s response is cached for 30 seconds. If you just uploaded a file and it does not appear, wait a moment and try again.
Troubleshooting
- 400 — Bad Request
A
400 response means the prefix query parameter failed validation.