GET
/
api
/
v1
/
knowledge-engines
curl --request GET \
  --url https://api.getdecisional.ai/api/v1/knowledge-engines
[
  {
    "id": "kng_abc123xyz789",
    "name": "Fintech Companies",
    "description": "Knowledge engine for processing and analyzing fintech companies",
    "notes": {
      "category": "fintech"
    },
    "status": "ready",
    "created_at": 1679644800
  }
]

Response

200 - application/json
List of knowledge engines
id
string

Alphanumeric 14 character string identifier

Example:

"kng_abc123xyz789"

name
string

Name of the knowledge engine

Example:

"Fintech Companies"

description
string

Description of the knowledge engine

Example:

"Knowledge engine for processing and analyzing fintech companies"

notes
object

Custom attributes and fields

Example:
{ "category": "fintech" }
status
enum<string>

Current status of the knowledge engine

Available options:
processing,
ready
Example:

"ready"

created_at
integer

Unix timestamp when this entity was created

Example:

1679644800