Rate Limits
This endpoint is rate limited to 60 requests per minute per user.Authorizations
Bearer authentication header of the form Bearer <token>
. The <token>
represents your API key, which must be acquired from the Kolena platform.
Path Parameters
Body
Response
Successful Response
The ID of this Agent.
The ID of the workspace hosting this Agent.
The name of this Agent.
A short description of this Agent's objective, e.g. "Extract key information from leases and addendum documents".
When this Agent was created, formatted as an ISO 8601 timestamp (e.g. 2025-10-08T20:14:29.472247+00:00
)
When this Agent was last updated, formatted as an ISO 8601 timestamp (e.g. 2025-10-08T20:14:29.472247+00:00
)
The email address of the user who created this Agent.
The number of times this Agent has been Run.
The Prompts configured for this Agent.
[
{
"created": "2025-01-01T00:00:00",
"documents": [],
"last_updated_by": "user@example.com",
"name": "Account number",
"options": {
"code_generation": false,
"prompt": "Find the account number",
"type": "string",
"web_search": false
},
"updated": "2025-01-01T00:00:00"
},
{
"created": "2025-01-01T00:00:00",
"documents": [],
"last_updated_by": "user@example.com",
"name": "Account info",
"options": {
"code_generation": false,
"fields": ["full name", "address"],
"prompt": "Extract form fields",
"type": "form",
"web_search": false
},
"updated": "2025-01-02T00:00:00"
}
]