Retrieve Specific Content
Last updated
Last updated
You can retrieve an individual content item from your AskAI, you must include either a webpage
, file_id
(returned as content_id
when first added to your AskAI). or client_id
.
This is helpful to see the status
of a piece of content added to ensure it was added successfully.
The status of a piece of content can be: processing
, complete
or failed
.
AskAI ID
AskAI API Key
URL of the webpage to be retrieved
Unique identifier for the file
Unique identifier for the client
POST /api/1.1/wf/ask-ai-content-retrieve HTTP/1.1
Host: myaskai.com
Content-Type: application/json
Accept: */*
Content-Length: 98
{
"id": "text",
"api_key": "text",
"webpage": "https://example.com",
"file_id": "text",
"client_id": "text"
}
Successful operation
{
"response": {
"cursor": 1,
"results": [
{
"Modified Date": "2025-06-20T17:29:26.907Z",
"Created Date": "2025-06-20T17:29:26.907Z",
"Created By": "text",
"metadata_author": "text",
"metadata_link": "https://example.com",
"metadata_title": "text",
"EMB Project Id": "text",
"file extension": "text",
"content type": "text",
"webpage": "https://example.com",
"complete": true,
"vector ids": [
"text"
],
"vectors": 1,
"status": "text",
"created by (custom)": "text",
"failed": true,
"failed (int)": 1,
"_id": "text"
}
],
"count": 1,
"remaining": 1
}
}