Search Agent Data
POST/api/v1/beta/agent-data/:search
Search agent data with filtering, sorting, and pagination.
Query Parameters
organization_id: optional string
project_id: optional string
Cookie Parameters
session: optional string
Body Parameters
Returns
Search Agent Data
curl https://api.cloud.llamaindex.ai/api/v1/beta/agent-data/:search \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $LLAMA_CLOUD_API_KEY" \
-d '{
"deployment_name": "deployment_name"
}'{
"items": [
{
"data": {
"foo": "bar"
},
"deployment_name": "deployment_name",
"id": "id",
"collection": "collection",
"created_at": "2019-12-27T18:11:19.117Z",
"project_id": "project_id",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}Returns Examples
{
"items": [
{
"data": {
"foo": "bar"
},
"deployment_name": "deployment_name",
"id": "id",
"collection": "collection",
"created_at": "2019-12-27T18:11:19.117Z",
"project_id": "project_id",
"updated_at": "2019-12-27T18:11:19.117Z"
}
],
"next_page_token": "next_page_token",
"total_size": 0
}