---
title: "List Objects."
method: GET
path: "/v1/objects"
tags: ["objects"]
---

# List Objects.

`GET /v1/objects`

List all Objects for the authenticated account with pagination support.

## Query parameters

- `limit` integer
- `starting_after` string
- `name` string
- `content_type` 'unspecified' | 'text' | 'binary' | 'gzip' | 'tar' | 'tgz'
- `state` 'UPLOADING' | 'READ_ONLY' | 'DELETED' | 'ERROR'
- `search` string
- `include_total_count` boolean

## Response `200`

Successfully retrieved list of Objects.

- ObjectListView — A paginated list of Objects.
  - `objects` ObjectView[], required — List of Object entities.
    - `id` string, required — The unique identifier of the Object.
    - `name` string, required — The name of the Object.
    - `state` 'UPLOADING' | 'READ_ONLY' | 'DELETED' | 'ERROR', required
    - `size_bytes` integer, nullable — The size of the Object content in bytes (null until uploaded).
    - `content_type` 'unspecified' | 'text' | 'binary' | 'gzip' | 'tar' | 'tgz', required
    - `create_time_ms` integer, required — The creation time of the Object in milliseconds since epoch.
    - `delete_after_time_ms` integer, nullable — The time after which the Object will be deleted in milliseconds since epoch.
    - `metadata` object, nullable — User defined metadata to attach to the Object for organization.
    - `upload_url` string, nullable — Presigned URL for uploading content to S3 (only present on create).
  - `has_more` boolean, required — True if there are more results available beyond this page.
  - `total_count` integer, nullable — Total number of Objects across all pages.

## Other responses

- `401` — Unauthorized. Invalid or missing authentication.
- `403` — Forbidden. Account does not have devbox capability.
- `500` — Internal server error.

---

[API](https://skmtc.dev/runloopai/apis/runloop-api.md) · [All operations](https://skmtc.dev/runloopai/apis/runloop-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/runloopai/runloop-api/revisions/e9dc776053e4/schema)
