---
title: "Get content information"
method: GET
path: "/v0/enterprise/{enterprise_id}/content/{content_id}/"
tags: ["esper_cloud_api_Content"]
---

# Get content information

`GET /v0/enterprise/{enterprise_id}/content/{content_id}/`

Returns metadata for a single content item in the enterprise's Content Management library, identified by its content_id. The response includes the same fields as the list endpoint — filename, MIME type, size, tags, description, path, and ownership — but scoped to a single file. Does not return the file's binary content.

**Common Use Cases**

Verifying a specific file's metadata (type, size, tags, path) before referencing it in a device push operation
Confirming a file exists and retrieving its details after upload
Checking ownership or modification timestamps for auditing purposes

**Best Practices**

Use GET /v0/enterprise/{enterprise_id}/content/ with the search parameter to find a content_id if you don't already have it — this endpoint requires knowing the ID in advance
This endpoint returns metadata only

## Path parameters

- `content_id` string, uuid, required
- `enterprise_id` string, required

## Response `200`

successful operation

- EsperCloudApiContent
  - `id` integer, required — Unique content Identifier
  - `download_url` string, url — URL to download the content
  - `name` string — Name of the content
  - `key` string
  - `is_dir` boolean
  - `kind` string, nullable — The mime type of the content
  - `hash` string — Hash string of the content
  - `size` string — Size of the content in bytes
  - `path` string — Path to the content
  - `permissions` string — The permssion string for the content
  - `tags` string[] — Tags for the content
  - `description` string, nullable — Description for the content
  - `created` string, date-time
  - `modified` string, date-time
  - `enterprise` string, url — URL of the enterprise resource
  - `owner` object — Owner of the content
    - `id` integer
    - `username` string

## Other responses

- `401` — Authorization information is missing or invalid.
- `404` — Not Found.
- `500` — Internal server error

---

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