DealerAI
API Reference

Get assistant capabilities

Returns the capabilities the AI assistant currently supports for your account, such as available tools, data sources, and predefined task categories. Use this to discover what the assistant can do before starting a thread.

GET
/api/v1/assistant/threads/capabilities
AuthorizationBasic <token>

Basic Authorization header

In: header

Response Body

application/json

application/json

application/json

curl -X GET "https://api.dealerai.com/api/v1/assistant/threads/capabilities"
{
  "skills": [
    {
      "name": "string",
      "description": "string",
      "instructions": "string"
    }
  ],
  "tools": [
    {
      "name": "string",
      "description": "string"
    }
  ]
}
{
  "message": "string",
  "details": null
}
{
  "message": "string",
  "details": null
}