Documentation Index
Fetch the complete documentation index at: https://docs.ardie.ai/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
GET https://api.ardie.ai/api/marketplace/knowledge-bases
This endpoint is publicly accessible and does not require authentication.
Query Parameters
Search term to filter knowledge bases by title, description, or publisher.
Filter by category. Options: education, policy, health, research, legal
Filter by one or more tags.
Sort order. Options: popular, new, updated
Page number for pagination.
Number of results per page (max 50).
Example Request
curl "https://api.ardie.ai/api/marketplace/knowledge-bases?query=education&category=education&sort=popular&page=1&pageSize=12"
Response
List of knowledge base objects.Show Knowledge Base object
Unique identifier for the knowledge base.
Name of the knowledge base.
Organization or individual who created the knowledge base.
Brief description of the knowledge base.
Primary category classification.
List of tags for filtering.
Number of users with active subscriptions.
ISO 8601 timestamp of last update.
Total number of matching knowledge bases.
Number of results per page.
Total number of pages available.
Example Response
{
"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
}
Next Steps
Query a Knowledge Base
Once you’ve found a knowledge base, learn how to query it.