Get AskAI Details
Last updated
Last updated
You can get details about your AskAI via API.
Your AskAI's id
, api_key
and embed_id
are returned when an AskAI is created. These can be used in subsequent API requests, like adding content and asking questions.
The embed_id
is used when adding an AskAI to your website, used within the <script>
tag.
Account API Key
AskAI ID
AskAI API Key
POST /api/1.1/wf/askai-details HTTP/1.1
Host: myaskai.com
Content-Type: application/json
Accept: */*
Content-Length: 55
{
"account_api_key": "text",
"id": "text",
"api_key": "text"
}
Successful operation
{
"status": "text",
"response": {
"id": "text",
"api_key": "text",
"embed_id": "text",
"assistant_type": "text",
"chat_system": "text",
"explain_system": "text",
"name": "text",
"total_questions": 1,
"total_IDKs": 1
}
}