Skip to main content
GET
/
api
/
v1
/
agents
/
{agent_id}
/
versions
List Versions
curl --request GET \
  --url https://colloqui-web-develop-btoadh.laravel.cloud/api/v1/agents/{agent_id}/versions \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "version": 1,
      "published_at": "2025-10-07T10:30:00.000000Z"
    }
  ],
  "meta": {
    "per_page": 20,
    "next_cursor": null,
    "previous_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

Path Parameters

agent_id
string
required

The ID of the agent.

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

success

data
object[]
meta
object