> ## Documentation Index
> Fetch the complete documentation index at: https://openrouter-d02e98a0-speakeasy-sdk-regen-1789140024.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# ListWorkspacesResponse

## Example Usage

```typescript theme={null}
import { ListWorkspacesResponse } from "@openrouter/sdk/models/operations";

let value: ListWorkspacesResponse = {
  result: {
    data: [
      {
        createdAt: "2025-08-24T10:30:00Z",
        createdBy: "user_abc123",
        defaultGuardrailId: "595d5849-7e86-51fd-a7c0-705c34e4afff",
        defaultImageModel: "openai/dall-e-3",
        defaultProviderSort: "price",
        defaultTextModel: "openai/gpt-4o",
        description: "Production environment workspace",
        id: "550e8400-e29b-41d4-a716-446655440000",
        ioLoggingApiKeyIds: null,
        ioLoggingSamplingRate: 1,
        isDataDiscountLoggingEnabled: true,
        isObservabilityBroadcastEnabled: false,
        isObservabilityIoLoggingEnabled: false,
        name: "Production",
        slug: "production",
        updatedAt: "2025-08-24T15:45:00Z",
      },
    ],
    totalCount: 1,
  },
};
```

## Fields

| Field    | Type                                                                     | Required             | Description | Example                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     |
| -------- | ------------------------------------------------------------------------ | -------------------- | ----------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `result` | [models.ListWorkspacesResponse](../../models/listworkspacesresponse.mdx) | :heavy\_check\_mark: | N/A         | \{<br />"data": \[<br />\{<br />"created\_at": "2025-08-24T10:30:00Z",<br />"created\_by": "user\_abc123",<br />"default\_guardrail\_id": "595d5849-7e86-51fd-a7c0-705c34e4afff",<br />"default\_image\_model": "openai/dall-e-3",<br />"default\_provider\_sort": "price",<br />"default\_text\_model": "openai/gpt-4o",<br />"description": "Production environment workspace",<br />"id": "550e8400-e29b-41d4-a716-446655440000",<br />"include\_byok\_in\_budgets": false,<br />"io\_logging\_api\_key\_ids": null,<br />"io\_logging\_sampling\_rate": 1,<br />"is\_data\_discount\_logging\_enabled": true,<br />"is\_observability\_broadcast\_enabled": false,<br />"is\_observability\_io\_logging\_enabled": false,<br />"name": "Production",<br />"slug": "production",<br />"updated\_at": "2025-08-24T15:45:00Z"<br />}<br />],<br />"total\_count": 1<br />} |
