{ "opencollection": "1.0.0", "info": { "name": "LangWatch Agents Projects API", "version": "1.0.0" }, "request": { "auth": { "type": "apikey", "key": "X-Auth-Token", "value": "{{X-Auth-Token}}", "placement": "header" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://app.langwatch.ai/api/projects", "params": [ { "name": "page", "value": "", "type": "query" }, { "name": "limit", "value": "", "type": "query" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "List all non-archived projects for the organization (paginated). Requires an admin API key with project:view permission." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://app.langwatch.ai/api/projects", "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Create a new project in the organization. Returns the project with its API key (sk-lw-...) for sending traces. Provide either teamId (existing team) or newTeamName (creates a new team). Requires project:create permission." }, { "info": { "name": "Get a project", "type": "http" }, "http": { "method": "GET", "url": "https://app.langwatch.ai/api/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID (project_...)" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Get a project by ID, including its API key. Requires project:view permission." }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PATCH", "url": "https://app.langwatch.ai/api/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Update project fields. Only provided fields are changed. Requires project:update permission." }, { "info": { "name": "Archive a project", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.langwatch.ai/api/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID" } ], "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "docs": "Soft-delete (archive) a project. Archived projects are excluded from list responses. Requires project:delete permission." } ] } ], "bundled": true }