Skip to main content
POST
/
api
/
agents
/
{id}
/
import-url
Import knowledge from URL
curl --request POST \
  --url https://rippletide-backend.azurewebsites.net/api/agents/{id}/import-url \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "url": "<string>"
}
'
{
  "success": true,
  "message": "<string>",
  "article": {
    "url": "<string>",
    "title": "<string>",
    "summary": "<string>",
    "wordCount": 123,
    "chunkCount": 123,
    "preview": "<string>"
  },
  "knowledge": {
    "qaPairsStored": 123,
    "usedDefaultFallback": true
  }
}

Authorizations

x-api-key
string
header
required

API key for programmatic access

Path Parameters

id
string<uuid>
required

Body

application/json
url
string<uri>
required

Response

Knowledge imported successfully

success
boolean
message
string
article
object
knowledge
object