Documentation Index
Fetch the complete documentation index at: https://docs.intellibase.dev/llms.txt
Use this file to discover all available pages before exploring further.
Endpoint
POST https://api.intellibase.dev/api/v1/projects
Authentication
Requires a valid API key.
Request Body
Descriptive name for your project
true: Vector-Only mode (no knowledge graph, semantic search only)
false: KG+Vector mode (requires ontology_id)
Required if vector_only is false. The ID of an existing ontology.
Response
Unique identifier for the created project
Operating mode: vector_only or kg_vector
When the project was created
The ontology schema (null for Vector-Only projects)
curl -X POST https://api.intellibase.dev/api/v1/projects \
-H "Authorization: Bearer ib-your-api-key" \
-H "Content-Type: application/json" \
-d '{
"name": "Engineering Knowledge Base",
"ontology_id": "ont-abc123"
}'
{
"project_id": "proj-abc123",
"name": "Engineering Knowledge Base",
"mode": "kg_vector",
"created_at": "2024-01-15T10:30:00Z",
"ontology": {
"name": "Software Engineering",
"hierarchy": [ ... ],
"edge_types": [ ... ]
}
}
Save the project_id! You’ll need it for all ingestion and query operations.
Projects cannot change modes after creation. Create a new project if you need a different mode.