Skip to main content

Intro

The Teams API lets you manage LangWatch teams via REST. Teams are organizational units that group projects and members together. This API is designed for service-to-service automation (e.g. provisioning team structures for new departments, cleaning up orphaned teams from test runs), not for end-user access.

Authentication

The Teams API requires an organization-level API key with team:manage permission (created in Settings > API Keys). Pass it as a Bearer token:
Project API keys (X-Auth-Token) cannot be used here — they lack organization context.

Endpoints

Errors

Every refusal carries a stable code. Branch on that, not on the message.

Soft Delete

DELETE does not permanently remove a team. It sets an archivedAt timestamp, making the team invisible to list and get operations. Archived teams can still be referenced in historical data (e.g. past project associations).

Typical Flow

  1. Create an admin API key in Settings > API Keys with team:manage permission
  2. Call POST /api/teams with a team name
  3. Use the returned team id when creating projects via the Projects API, or later move an existing project by updating its teamId
Last modified on August 10, 2026