Skip to main content
GET
/
v1
/
projects
/
{projectId}
/
knowledge-base
List Knowledge Base Entries
curl --request GET \
  --url https://api.migma.ai/v1/projects/{projectId}/knowledge-base \
  --header 'Authorization: <api-key>'
{
  "status": "success",
  "data": {
    "entries": [
      {
        "id": "<string>",
        "title": "<string>",
        "content": "<string>",
        "date": "2023-11-07T05:31:56Z"
      }
    ],
    "total": 123
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Use 'Authorization: Bearer YOUR_API_KEY' where YOUR_API_KEY is obtained from the Migma dashboard under Settings → API Integration.

Path Parameters

projectId
string
required

Project ID (MongoDB ObjectId)

Pattern: ^[0-9a-fA-F]{24}$

Response

Knowledge base entries retrieved

status
enum<string>
Available options:
success
data
object