ListObservabilityDestinationsResponse - TypeScript SDK

ListObservabilityDestinationsResponse type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Example Usage

1import { ListObservabilityDestinationsResponse } from "@openrouter/sdk/models/operations";
2
3let value: ListObservabilityDestinationsResponse = {
4 result: {
5 data: [
6 {
7 apiKeyHashes: null,
8 config: {
9 baseUrl: "https://us.cloud.langfuse.com",
10 publicKey: "pk-l...EfGh",
11 secretKey: "sk-l...AbCd",
12 },
13 createdAt: "2025-08-24T10:30:00Z",
14 enabled: true,
15 filterRules: null,
16 id: "99999999-aaaa-bbbb-cccc-dddddddddddd",
17 name: "Production Langfuse",
18 privacyMode: false,
19 samplingRate: 1,
20 type: "langfuse",
21 updatedAt: "2025-08-24T15:45:00Z",
22 workspaceId: "550e8400-e29b-41d4-a716-446655440000",
23 },
24 ],
25 totalCount: 1,
26 },
27};

Fields

FieldTypeRequiredDescriptionExample
resultmodels.ListObservabilityDestinationsResponse✔️N/A{"data": [{"api_key_hashes": null,"config": {"baseUrl": "https://us.cloud.langfuse.com","publicKey": "pk-l...EfGh","secretKey": "sk-l...AbCd"},
“created_at”: “2025-08-24T10:30:00Z”,
“enabled”: true,
“filter_rules”: null,
“id”: “99999999-aaaa-bbbb-cccc-dddddddddddd”,
“name”: “Production Langfuse”,
“privacy_mode”: false,
“sampling_rate”: 1,
“type”: “langfuse”,
“updated_at”: “2025-08-24T15:45:00Z”,
“workspace_id”: “550e8400-e29b-41d4-a716-446655440000”
}
],
“total_count”: 1<br />}