# Get details of a folder

```http
GET https://api.synup.com/api/v4/folder-details
```

This API retrieves detailed information about a specific folder.

**Response Includes:**
- Folder details (ID, name)
- Parent folder information (if applicable)
- Creation date

:::info[]

Note: Either folderId or folderName must be provided as a query parameter.

:::

Source: https://developer.synup.com/api/organizing-locations/get-details-of-a-folder

## Query parameters

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `folderId` | string | optional | Unique identifier of the folder |
| `folderName` | string | optional | Name of the folder |

## Example request

```bash
curl -X GET 'https://api.synup.com/api/v4/folder-details' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Successfully retrieved folder details |
