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

# List Projects

> Retrieve all projects in your organization

Returns all projects associated with your organization.

## Response

Returns an array of project objects.

<ResponseField name="id" type="string">
  Unique project identifier (UUID)
</ResponseField>

<ResponseField name="name" type="string">
  Project name
</ResponseField>

<ResponseField name="last_updated" type="string">
  ISO 8601 timestamp of last update
</ResponseField>

<ResponseField name="physical_sample_count" type="integer">
  Number of physical samples in the project
</ResponseField>

<ResponseField name="owner_id" type="string">
  User ID of the project owner
</ResponseField>

<ResponseField name="owner_name" type="string">
  Display name of the project owner
</ResponseField>

<ResponseField name="detail_note" type="object">
  Project notes content
</ResponseField>

<RequestExample>
  ```python SDK theme={null}
  from atomscale import Client

  client = Client(api_key="YOUR_API_KEY")
  projects = client.list_projects()
  ```

  ```python Python theme={null}
  import requests

  response = requests.get(
      "https://api.atomscale.ai/projects/",
      headers={"X-API-KEY": "YOUR_API_KEY"}
  )
  projects = response.json()
  ```

  ```bash cURL theme={null}
  curl "https://api.atomscale.ai/projects/" \
    -H "X-API-KEY: YOUR_API_KEY"
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  [
    {
      "id": "d290f1ee-6c54-4b01-90e6-d701748f0851",
      "name": "GaAs MBE Development",
      "last_updated": "2024-01-15T14:30:00Z",
      "physical_sample_count": 12,
      "owner_id": "user_abc123",
      "owner_name": "Jane Smith",
      "detail_note": null
    }
  ]
  ```
</ResponseExample>
