Skip to main content
GET
/
api
/
v1
/
ontologies
curl https://api.intellibase.dev/api/v1/ontologies \
  -H "Authorization: Bearer ib-your-api-key"
{
  "ontologies": [
    {
      "id": "ont-abc123",
      "name": "Software Engineering",
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "ont-def456",
      "name": "Customer Support",
      "created_at": "2024-01-10T09:00:00Z"
    }
  ]
}

Endpoint

GET https://api.intellibase.dev/api/v1/ontologies

Authentication

Requires a valid API key.

Response

ontologies
array
Array of ontology summary objects
curl https://api.intellibase.dev/api/v1/ontologies \
  -H "Authorization: Bearer ib-your-api-key"
{
  "ontologies": [
    {
      "id": "ont-abc123",
      "name": "Software Engineering",
      "created_at": "2024-01-15T10:30:00Z"
    },
    {
      "id": "ont-def456",
      "name": "Customer Support",
      "created_at": "2024-01-10T09:00:00Z"
    }
  ]
}
This endpoint returns summary information. Use Get Ontology to retrieve the complete schema.