Explore the complete API reference for AgentGrid. Integrate AI agents seamlessly into your applications with our RESTful API.
https://app.agentgrid.aiAll API requests require authentication using an API key. Include your API key in the request body or as a query parameter.
π‘ Sign in to create API keys and access interactive features.
Complete API reference with interactive testing capabilities.
/api/chatChat with agent using legacy endpoint (RECOMMENDED)
/api/v1/agentsList all agents for your organization
/api/v1/agentsCreate a new agent
/api/v1/agents/{id}Update an existing agent
/api/v1/agents/{id}Get detailed information about a specific agent
/api/v1/agents/{id}/api-keysList API keys for an agent
/api/v1/agents/{id}/api-keysCreate a new API key for an agent
/api/v1/agents/{id}/analyticsGet analytics and usage statistics for an agent
/api/v1/agents/{id}/knowledgeGet the knowledge base for an agent
/api/v1/agents/{id}/knowledgeUpdate the knowledge base for an agent
/api/v1/agents/{id}Delete an agent
/api/v1/agents/{id}/chatGet chat history for an agent
/api/v1/agents/{id}/api-keys/{keyId}Revoke/delete an API key
Create an API key for your agent above to authenticate requests.
Use the chat endpoint to send messages to your agent:
curl -X POST "https://your-domain.com/api/v1/agents//chat" \
-H "Content-Type: application/json" \
-d '{
"message": "Hello, how can you help me?",
"apiKey": "your-api-key-here"
}'Retrieve agent details and configuration:
curl -X GET "https://your-domain.com/api/v1/agents/" \
-H "Content-Type: application/json"