> ## Documentation Index
> Fetch the complete documentation index at: https://docs.postsyncer.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get folder

> Retrieve one media folder by id

## Get folder

Returns a single folder if it belongs to a workspace you can access. Includes **`parent`** when loaded.

### Request

<ParamField path="folder_id" type="integer" required>
  The id of the folder to retrieve (same as the **`id`** field returned by [list folders](/api-reference/folders/list) or [create folder](/api-reference/folders/create))
</ParamField>

Requires the **`posts`** ability.

<RequestExample>
  ```bash theme={null}
  curl -X GET "https://postsyncer.com/api/v1/folders/42" \
    -H "Authorization: Bearer YOUR_API_TOKEN"
  ```
</RequestExample>
