> ## 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.

# Get Project Last Updated

> Get the most recent update time for a project

Returns the timestamp of the most recent update across the project, including its samples and data.

<ParamField path="project_id" type="string" required>
  UUID of the project
</ParamField>

## Response

Returns an ISO 8601 timestamp string.

<RequestExample>
  ```bash cURL theme={null}
  curl "https://api.atomscale.ai/projects/d290f1ee-6c54-4b01-90e6-d701748f0851/last_updated" \
    -H "X-API-KEY: YOUR_API_KEY"
  ```

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

  response = requests.get(
      "https://api.atomscale.ai/projects/d290f1ee-6c54-4b01-90e6-d701748f0851/last_updated",
      headers={"X-API-KEY": "YOUR_API_KEY"}
  )
  last_updated = response.json()
  ```
</RequestExample>

<ResponseExample>
  ```json 200 theme={null}
  "2024-01-15T14:30:00Z"
  ```
</ResponseExample>
