Search
Deprecated
POST/accounts/{account_id}/autorag/rags/{id}/search
Search
Security
API Token
The preferred authorization scheme for interacting with the Cloudflare API. Create a token.
Example:
API Email + API Key
The previous authorization scheme for interacting with the Cloudflare API, used in conjunction with a Global API key.
Example:
The previous authorization scheme for interacting with the Cloudflare API. When possible, use API tokens instead of Global API keys.
Example:
Accepted Permissions (at least one required)
Body ParametersJSON
Search
curl https://api.cloudflare.com/client/v4/accounts/$ACCOUNT_ID/autorag/rags/$ID/search \
-H 'Content-Type: application/json' \
-H "Authorization: Bearer $CLOUDFLARE_API_TOKEN" \
-d '{
"query": "query"
}'{
"result": {
"search_query": "search_query",
"data": [
{
"score": 0,
"attributes": {},
"content": [
{
"text": "text",
"type": "type"
}
],
"file_id": "file_id",
"filename": "filename"
}
],
"has_more": true,
"next_page": "next_page",
"object": "object"
},
"success": true
}Returns Examples
{
"result": {
"search_query": "search_query",
"data": [
{
"score": 0,
"attributes": {},
"content": [
{
"text": "text",
"type": "type"
}
],
"file_id": "file_id",
"filename": "filename"
}
],
"has_more": true,
"next_page": "next_page",
"object": "object"
},
"success": true
}