---
title: "GET /silo/v1/entries"
method: GET
path: "/silo/v1/entries"
---

# GET /silo/v1/entries

`GET /silo/v1/entries`

Fetch all the silo entries in the current workspace.

## Query parameters

- `folder` string — The folder in which to search for entries.
- `created_at` string — Starting date and time for retrieving results, formatted as an ISO timestamp. Treated as the upper bound when descending (the default) or the lower bound when ascending.
- `cursor` string — The position marker from the previous result's next_cursor property, used for pagination. Must be used with the same ascending value as the call that produced it.
- `limit` integer — The maximum number of entries to return in a single page of results.
- `ascending` boolean — When true, results are returned in ascending order (oldest first) instead of the default descending order (newest first).

## Response `200`

OK

- SiloEntryCollection
  - `created_at` string — Starting date for results. Acts as the upper bound when descending (the default) or the lower bound when ascending.
  - `cursor` string — Cursor used to identify the current page of results.
  - `folder` string — Key for the folder
  - `limit` integer — Maximum number of entries to show in a page of results, up to 100.
  - `list` SiloEntry[], nullable — Array of entries sorted by creation time, descending by default or ascending when requested.
    - `attachments` SiloFile[] — List of files for this entry.
      - `category` string — Category of the file.
      - `created_at` string — The date and time this file was created.
      - `desc` string — Description of the file.
      - `embeddable` boolean — When true, the file can be embedded inside another file, like a PDF.
      - `entry_id` string — The UUID of the entry this file belongs to.
      - `hash` string — SHA256 hash of the file.
      - `id` string — The UUID that identifies the file in the entry.
      - `key` string — Key used to identify the file by the service or app that generated it.
      - `meta` object — Any additional meta data about the file.
      - `mime` string — MIME type of the file.
      - `name` string — Name of the file.
      - `previous` SiloFileVersion[] — Set of previous versions of the file.
        - `created_at` string — The date and time this file was created.
        - `hash` string — The SHA256 of the file's contents.
        - `id` string — The UUID that identifies the file when it was originally uploaded.
        - `size` integer — Size of the file.
      - `private` boolean — When true, the file will not have a public link.
      - `size` integer — Size of the file in bytes.
      - `stored` boolean — When true, indicates that the file's contents have been uploaded successfully.
      - `url` string — URL where the file's contents can be downloaded.
    - `context` string — When entry provided within a related query, this is the context within the document.
    - `created_at` string — The date and time the silo entry was created.
    - `data` object — JSON envelope contents when specifically requested.
    - `digest` DsigDigest
      - `alg` string
      - `val` string
    - `doc_schema` string — Schema URL for the envelope's payload.
    - `draft` boolean — Deprecated. When true, indicates that the envelope is not signed.
    - `env_schema` string — Schema URL for the envelope.
    - `faults` SiloFault[] — List of faults that occurred during the processing of the job associated with the last state.
      - `code` string — Code assigned by the provider that may provide additional information about the fault.
      - `message` string — Message assigned by the provider that may provide additional information about the fault.
      - `paths` string[] — JSON Paths to the properties affected by the fault.
      - `provider` string — ID of the provider that generated the fault.
    - `folder` string — Key for the folder where the entry is located.
    - `id` string — UUID of the silo entry.
    - `invalid` boolean — When true, the envelope's contents are invalid and need to be reviewed.
    - `key` string — Key used to identify the entry idempotently within a workspace.
    - `meta` SiloMeta[] — Additional meta fields associated with the entry.
      - `created_at` string — Timestamp of when the row was created.
      - `entry_id` string — ID of the entry this meta row belongs to
      - `id` string — Compound ID of the meta row.
      - `indexed` boolean — When true, the meta entry is indexed for search.
      - `key` string — Key used to identify the meta entry by the source.
      - `link_scope` string — Describes the context in which the link should be made available.
      - `link_url` string — URL associated with the meta row that may be used to perform additional actions or view more details.
      - `owned` boolean — When true, the meta entry is indexed by owner ID.
      - `owner_id` string — UUID of the owner of the silo entry, typically a workspace ID. Included for reference when the authentication token does not already include the owner such as for lookups by reference.
      - `ref` string — Indexable value used to locate the meta entry if a silo entry ID is not available.
      - `secure` boolean — When true, the meta entry is never included in lists and needs to be specifically requested.
      - `shared` boolean — When true, the meta entry may be shared with other applications.
      - `src` string — The service or source that created this meta entry.
      - `updated_at` string — Timestamp of when the row was last updated.
      - `value` object — The JSON data stored with the meta row.
    - `signed` boolean — When true, the envelope has been signed and should not be modified.
    - `snippet` object — JSON object containing a snippet of the document.
    - `state` string — Current state of the silo entry if not a draft.
    - `tags` string[] — Copy of tags stored in the envelope header.
    - `updated_at` string — The date and time the silo entry was last updated.
  - `next_cursor` string — Cursor used to identify the next page of results.

---

[API](https://skmtc.net/invopop/apis/access-service-api.md) · [All operations](https://skmtc.net/invopop/apis/access-service-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/invopop/access-service-api/versions/fc954f96ea62/schema)
