Skip to main content
GET
/
api
/
v1
/
knowledge-bases
List Knowledge Bases
curl --request GET \
  --url https://colloqui-web-develop-btoadh.laravel.cloud/api/v1/knowledge-bases \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "id": "01kqh44erj3ea18g755d9wbr01",
      "name": "eius et animi",
      "created_at": "2026-05-01T06:38:04.000000Z",
      "updated_at": "2026-05-01T06:38:04.000000Z",
      "workspace_id": "01kqh44er249bbjra64d5frez4"
    },
    {
      "id": "01kqh44esqy3py46g1pd3tmc81",
      "name": "commodi incidunt iure",
      "created_at": "2026-05-01T06:38:04.000000Z",
      "updated_at": "2026-05-01T06:38:04.000000Z",
      "workspace_id": "01kqh44esazsr39rfzbr5gh72f"
    }
  ],
  "meta": {
    "per_page": 20,
    "next_cursor": null,
    "prev_cursor": null
  }
}

Documentation Index

Fetch the complete documentation index at: https://cooloquiptyltd.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer token authentication

Query Parameters

per_page
integer

The number of items per page. Must be at least 1. Must not be greater than 100.

Example:

25

cursor
string

The cursor for pagination. Use the meta.next_cursor or meta.previous_cursor from the response.

Example:

"example"

Response

200 - application/json
data
object[]
Example:
[
  {
    "id": "01kqh44erj3ea18g755d9wbr01",
    "name": "eius et animi",
    "created_at": "2026-05-01T06:38:04.000000Z",
    "updated_at": "2026-05-01T06:38:04.000000Z",
    "workspace_id": "01kqh44er249bbjra64d5frez4"
  },
  {
    "id": "01kqh44esqy3py46g1pd3tmc81",
    "name": "commodi incidunt iure",
    "created_at": "2026-05-01T06:38:04.000000Z",
    "updated_at": "2026-05-01T06:38:04.000000Z",
    "workspace_id": "01kqh44esazsr39rfzbr5gh72f"
  }
]
meta
object