Skip to main content
GET
/
organization
/
rag
/
sources
/
{uuid}
/
content
Get AI data source content
curl --request GET \
  --url https://api.getfernand.com/organization/rag/sources/{uuid}/content \
  --header 'X-API-Key: <api-key>'
{
  "questions": [
    "How do I reset my password?",
    "What's the password recovery process?"
  ],
  "answer": "To reset your password, click on..."
}
Retrieves the stored content of a Question or Text source. For Questions, returns parsed questions array and answer. For Texts, returns the raw text content. Other source types cannot be retrieved through this endpoint.

Authorizations

X-API-Key
string
header
required

Authenticate your account by including your secret key in API requests. You can manage your API keys in the Dashboard.

Authentication to the API is performed by using the HTTP Header X-API-Key.

Path Parameters

uuid
string
required

UUID of the source to retrieve.

Response

Source content retrieved successfully.

Question source content.

questions
string[]
Example:
[
"How do I reset my password?",
"What's the password recovery process?"
]
answer
string
Example:

"To reset your password, click on..."