# List

Launch stage: GA

`GET /api/2.0/workspace/list`

Lists the contents of a directory, or the object if it is not a directory.
 If the input path does not exist, this call returns an error `RESOURCE_DOES_NOT_EXIST`.

API scopes: workspace

## Query parameters

- `path` (string, optional)
  The absolute path of the notebook or directory.
- `notebooks_modified_after` (int64, optional)
  UTC timestamp in milliseconds

## Returns

Returns a list of ObjectInfo objects.

## Response

```json
{
  "objects": [
    {
      "object_type": "string",
      "path": "string",
      "language": "string",
      "created_at": 0,
      "modified_at": 0,
      "object_id": 0,
      "size": 0,
      "resource_id": "string",
      "directory_info": {}
    }
  ]
}
```

