After you fetch audit logs, you can analyze them with tools like Pandas, Amazon Redshift, Google BigQuery, or Microsoft Fabric. Some audit log analysis tools don’t support JSON. Refer to the documentation for your analysis tool for guidelines and requirements to transform the JSON-formatted audit logs before analysis.
For more details about the format of the logs, see Audit log schema and Actions.
Audit log retention
The following recommendations help you retain audit logs to meet your organization’s governance and compliance obligations:- If you must retain audit logs for a specific period of time, W&B recommends periodically transferring logs to long-term storage, either with storage buckets or the Audit Logging API.
- If you are subject to the Health Insurance Portability and Accountability Act of 1996 (HIPAA), you must retain audit logs for a minimum of 6 years in an environment where no internal or external actor can delete or modify them before the end of the mandatory retention period. For HIPAA-compliant Dedicated Cloud instances with BYOB, you must configure guardrails for your managed storage, including any long-term retention storage.
Audit log schema
Use this schema to interpret the fields returned in each audit log entry. The following table shows all keys that can appear in an audit log entry, ordered alphabetically. Depending on the action and the circumstances, a specific log entry may include only a subset of the possible fields.Personally identifiable information (PII)
Personally identifiable information (PII), such as email addresses and the names of projects, teams, and reports, is available only with the API endpoint option:- For Self-Managed and Dedicated Cloud, an organization admin can exclude PII when fetching audit logs.
- For Multi-tenant Cloud, the API endpoint always returns relevant fields for audit logs, including PII. This isn’t configurable.
Before you begin
Before you fetch audit logs, confirm that you meet the following prerequisites for your deployment type:-
Organization-level admins can fetch audit logs. If you receive a
403error, ensure that you or your service account has adequate permission. -
Multi-tenant Cloud: If you’re a member of multiple Multi-tenant Cloud organizations, you must configure the Default API organization, which determines where audit logging API calls are routed. Otherwise, you receive the following error:
To specify your default API organization:
- Click your profile image, then click User Settings.
- For Default API organization, select an organization.
Fetch audit logs
Use the W&B Audit Logging API to retrieve audit logs. The endpoint, query parameters, and response format depend on your deployment type.- Dedicated Cloud or Self-Managed
- Multi-tenant Cloud
Use this tab for Dedicated Cloud or Self-Managed instances. The Audit Logging API endpoint uses your instance URL:If you set The response resembles the following example:To fetch the next page, repeat the request with the same resolved date range and
- Dedicated Cloud:
https://[INSTANCE-NAME].wandb.io/admin/audit_logs. - Self-Managed:
https://[WANDB-PLATFORM-URL]/admin/audit_logs.
[INSTANCE-NAME]: your Dedicated Cloud instance name.[WANDB-PLATFORM-URL]: the URL of your Self-Managed instance.[API-ENDPOINT]: the endpoint for your instance.[BASE64-USERNAME-API-KEY]: the base64-encoded string in the format[USERNAME]:[API-KEY].[NEXT-CURSOR]: thenext_cursorvalue from the previous response.
anonymize: If the URL includesanonymize=true, W&B does not add PII fields to the audit logs. Otherwise, PII is included. For more information, see Exclude PII when fetching audit logs.startDate: The inclusive start of the date range, in UTC. Supported formats areYYYY-MM-DD,YYYY-MM-DDTHH,YYYY-MM-DDTHH:mm, andYYYY-MM-DDTHH:mm:ss. Missing time parts default to zero. For example,2026-08-03T01means2026-08-03T01:00:00Z. If you omitstartDate, the range starts at midnight UTC today, ornumDaysdays before today if you setnumDays.numDays: A non-negative integer. W&B fetches logs fromstartDatethrough the nextnumDaysdays. If you omitnumDaysor set it to0, W&B fetches logs for thestartDateday only. You can’t usenumDayswithendDate.endDate: The exclusive end of the date range, in UTC. The supported formats matchstartDate. SettingendDatereturns a paginated JSON response, even if you don’t setlimit. You can’t useendDatewithnumDays.limit: The maximum number of audit log entries to return in a paginated response. Use a positive integer up to20,000. If you setlimit, W&B returns a paginated JSON response. In paginated requests, the default is20,000.cursor: An opaque cursor from the previous response’snext_cursorfield. Reuse the cursor with the same resolved date range andanonymizevalue. If you setcursor, you must also setlimitorendDate.
limit or endDate, the API preserves the original streaming response format. The response contains newline-separated JSON objects. Each object includes the fields described in Audit log schema, the same as logs synced to an instance-level bucket.To fetch a streaming newline-separated JSON response for a three-day range and exclude PII, run:limit or endDate, the API returns a JSON object with the following fields:audit_logs: An array of audit log entries. Each entry includes the fields described in Audit log schema.range_start_time: The start of the resolved date range, in UTC.range_end_time: The exclusive end of the resolved date range, in UTC.count: The number of audit log entries returned in this response.next_cursor: An opaque cursor for the next page of results. If this field isnull, there are no more results for the selected date range.
anonymize value. Set cursor to the next_cursor value from the previous response. Continue until next_cursor is null.Exclude PII when fetching audit logs
For Self-Managed and Dedicated Cloud, a W&B organization or instance admin can exclude PII when fetching audit logs. For Multi-tenant Cloud, the API endpoint always returns relevant fields for audit logs, including PII. This isn’t configurable.To exclude PII, pass theanonymize=true URL parameter. For example, to get audit logs for user activity within the last week and exclude PII, if your W&B instance URL is https://mycompany.wandb.io, use an API endpoint like:Use basic authentication
You must authenticate each request to the audit logs API. To use basic authentication with your API key to access the audit logs API, set the HTTP request’sAuthorization header to the string Basic followed by a space, then the base64-encoded string in the format [USERNAME]:[API-KEY]. In other words, replace the username and API key with your values separated with a : character, then base64-encode the result. For example, to authorize as demo:p@55w0rd, set the header to Authorization: Basic ZGVtbzpwQDU1dzByZA==.
Actions
Each audit log entry records one of the following actions. Use this reference to interpret theaction field in a log entry. The following table describes possible actions that W&B can record, sorted alphabetically.