Approve or reject prompt suggestions
curl --request POST \
--url https://app.promptingco.com/api/v1/prompt-suggestions/review \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"reviews": [
{
"promptSuggestionId": "<string>",
"feedback": "<string>",
"userPersonaId": "<string>",
"answerEngines": [
"<string>"
],
"location": "<string>"
}
]
}
'const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
reviews: [
{
promptSuggestionId: '<string>',
feedback: '<string>',
userPersonaId: '<string>',
answerEngines: ['<string>'],
location: '<string>'
}
]
})
};
fetch('https://app.promptingco.com/api/v1/prompt-suggestions/review', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.promptingco.com/api/v1/prompt-suggestions/review"
payload = { "reviews": [
{
"promptSuggestionId": "<string>",
"feedback": "<string>",
"userPersonaId": "<string>",
"answerEngines": ["<string>"],
"location": "<string>"
}
] }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"data": {
"approvedCount": 1,
"rejectedCount": 1,
"createdConversationQueryIds": [
"<string>"
]
}
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}Visibility & Mentions
Approve or reject prompt suggestions
Batch-approve or reject prompt suggestions. Approval creates tracked prompts and conversation queries using each suggestion’s persona and answer engines, falling back to the product default persona and chatgpt/gemini/sonar.
POST
/
api
/
v1
/
prompt-suggestions
/
review
Approve or reject prompt suggestions
curl --request POST \
--url https://app.promptingco.com/api/v1/prompt-suggestions/review \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"reviews": [
{
"promptSuggestionId": "<string>",
"feedback": "<string>",
"userPersonaId": "<string>",
"answerEngines": [
"<string>"
],
"location": "<string>"
}
]
}
'const options = {
method: 'POST',
headers: {'x-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
reviews: [
{
promptSuggestionId: '<string>',
feedback: '<string>',
userPersonaId: '<string>',
answerEngines: ['<string>'],
location: '<string>'
}
]
})
};
fetch('https://app.promptingco.com/api/v1/prompt-suggestions/review', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://app.promptingco.com/api/v1/prompt-suggestions/review"
payload = { "reviews": [
{
"promptSuggestionId": "<string>",
"feedback": "<string>",
"userPersonaId": "<string>",
"answerEngines": ["<string>"],
"location": "<string>"
}
] }
headers = {
"x-api-key": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text){
"ok": true,
"data": {
"approvedCount": 1,
"rejectedCount": 1,
"createdConversationQueryIds": [
"<string>"
]
}
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}{
"ok": false,
"code": "<string>",
"message": "<string>",
"details": "<unknown>"
}Authorizations
apiKeyAuthbearerAuthcookieAuth
Organization-scoped API key. Available scopes:
- content:read: Read site pages, markdown content, and llms.txt files
- content:write: Create, update, and delete site pages and content
- prompts:read: Read prompts, topics, prompt suggestions, and prompt analysis results
- prompts:write: Create, update, archive prompts and generate, edit, or review prompt suggestions
- simulations:read: Read agent-simulation tasks, runs, environments, and analytics
- simulations:write: Create and trigger simulation runs
- logs:read: Read AI-traffic logs and request-level audit events
- analytics:read: Read analytics aggregates (rankings, mentions, sources, SOV)
- analytics:write: Write events to analytics
- products:read: Read product metadata and competitor data
- products:write: Update product settings and competitor lists
Body
application/json