Skip to main content
GET
/
api
/
v1
/
projects
/
{project_id}
curl https://api.intellibase.dev/api/v1/projects/proj-abc123 \
  -H "Authorization: Bearer ib-your-api-key"
{
  "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": [ ... ]
  }
}

Endpoint

GET https://api.intellibase.dev/api/v1/projects/{project_id}

Path Parameters

project_id
string
required
The unique identifier of the project

Authentication

Requires a valid API key with access to the project.

Response

project_id
string
Unique identifier for the project
name
string
Project name
mode
string
Operating mode: vector_only or kg_vector
created_at
string
When the project was created
ontology
object
Complete ontology schema (null for Vector-Only projects)
curl https://api.intellibase.dev/api/v1/projects/proj-abc123 \
  -H "Authorization: Bearer ib-your-api-key"
{
  "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": [ ... ]
  }
}