Search All Content
Last updated
Last updated
You can search through all the content items from your AskAI. Providing either a webpage
search term or a title
search term. The API will look for content that contains the keyword you provide, either partially or exactly.
The top 50 results will be returned. Only provide title
or, webpage
but not both.
The user's AskAI ID.
The user's AskAI API key.
The title of the request (optional).
A URL to a webpage (optional).
POST /api/1.1/wf/ask-ai-content-search-all HTTP/1.1
Host: myaskai.com
Content-Type: application/json
Accept: */*
Content-Length: 108
{
"id": "{AskAI_ID}",
"api_key": "{AskAI_API_Key}",
"title": "Example title",
"webpage": "https://webpage.com/blog"
}
A successful response.
{
"status": "text",
"response": {
"content": [
{
"Modified Date": 1,
"Created Date": 1,
"Created By": "text",
"metadata_link": "text",
"metadata_title": "text",
"EMB Project Id": "text",
"file extension": "text",
"content type": "text",
"webpage": "text",
"complete": true,
"vector ids": [
"text"
],
"vectors": 1,
"status": "text",
"created by (custom)": "text",
"_id": "text"
}
]
}
}