Backend API
Get all AI knowledge bases with optional pagination and search
cURL
curl --request GET \ --url https://api.wacht.dev/ai/knowledge-bases \ --header 'Authorization: <api-key>'
{ "data": [ { "id": "1234567890123456789", "created_at": "2024-01-15T10:30:00Z", "updated_at": "2024-01-15T10:30:00Z", "deployment_id": "9876543210987654321", "name": "Product Documentation", "description": "Knowledge base for product docs", "configuration": {}, "documents_count": 15, "total_size": 5242880 } ], "has_more": false }
API key authentication (format: Bearer {api_key})
Number of items to return
1 <= x <= 100
Number of items to skip
x >= 0
Search term to filter knowledge bases
List of knowledge bases
Was this page helpful?