cURL
curl --request GET \ --url https://api.example.com/api/marketplace/knowledge-bases
{ "items": [ { "id": "<string>", "title": "<string>", "publisher": "<string>", "summary": "<string>", "category": "<string>", "tags": [ "<string>" ], "subscribersCount": 123, "queryVolume": 123, "updatedAt": "<string>" } ], "total": 123, "page": 123, "pageSize": 123, "totalPages": 123 }
Browse and search available knowledge bases
GET https://api.ardie.ai/api/marketplace/knowledge-bases
education
policy
health
research
legal
popular
new
updated
curl "https://api.ardie.ai/api/marketplace/knowledge-bases?query=education&category=education&sort=popular&page=1&pageSize=12"
Show Knowledge Base object
{ "items": [ { "id": "kb_edu_123", "title": "K-12 Curriculum Standards", "publisher": "Education Standards Board", "summary": "Comprehensive curriculum standards for K-12 education across all subjects.", "category": "education", "tags": ["curriculum", "k-12", "standards"], "subscribersCount": 245, "queryVolume": 15420, "updatedAt": "2024-01-15T10:30:00Z" }, { "id": "kb_edu_456", "title": "Higher Education Research", "publisher": "Academic Research Institute", "summary": "Research papers and studies on higher education pedagogy.", "category": "education", "tags": ["higher-ed", "research", "pedagogy"], "subscribersCount": 89, "queryVolume": 4230, "updatedAt": "2024-01-10T14:20:00Z" } ], "total": 24, "page": 1, "pageSize": 12, "totalPages": 2 }