Skip to main content
DELETE
/
api
/
v1
/
projects
/
{project_id}
curl -X DELETE https://api.intellibase.dev/api/v1/projects/proj-abc123 \
  -H "Authorization: Bearer ib-your-api-key"
(Empty response body)

Endpoint

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

Path Parameters

project_id
string
required
The unique identifier of the project to delete

Authentication

Requires a valid API key with access to the project.

Response

Returns 204 No Content on success (empty response body).
curl -X DELETE https://api.intellibase.dev/api/v1/projects/proj-abc123 \
  -H "Authorization: Bearer ib-your-api-key"
(Empty response body)
This action is irreversible! Deleting a project permanently removes:
  • All ingested data (nodes, edges, chunks)
  • All vector embeddings
  • All metadata and provenance
  • All ingestion jobs history
Make sure you have backups if needed before deleting.
The project itself is deleted, but the ontology used by the project is preserved. You can reuse it for new projects.