v124

OpenAPI 3.1.0MITraw.githubusercontent.com2026-08-01957351.2 MB
Observability

List observability destinations

List the observability destinations configured for the authenticated entity's default workspace. Use the workspace_id query parameter to scope the result to a different workspace. Only destinations with stable release status are surfaced — destinations of other types are excluded. Management key required.

get/observability/destinations

Query parameters

offsetinteger nullable

Number of records to skip for pagination

Number of records to skip for pagination

limitinteger

Maximum number of records to return (max 100)

Example:50

Maximum number of records to return (max 100)

workspace_idstring uuid

Optional workspace ID to filter by. Defaults to the authenticated entity's default workspace.

Example:550e8400-e29b-41d4-a716-446655440000

Optional workspace ID to filter by. Defaults to the authenticated entity's default workspace.

Response

List of observability destinations

total_countinteger required

Total number of destinations matching the filters.

Example response

{
  "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
}