Skip to main content
POST
/
feedback
Send feedback
curl --request POST \
  --url https://api.social-api.ai/v1/feedback \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "message": "It would be great to have a dark mode.",
  "type": "feature_request"
}
'
{
  "ok": true
}

Authorizations

Authorization
string
header
required

Prefix your API key with "Bearer ". Example: Authorization: Bearer sapi_key_...

Body

application/json

Feedback type and message

message
string

Message is the feedback content.

Example:

"It would be great to have a dark mode."

type
string

Type is one of: bug, feature_request, general.

Example:

"feature_request"

Response

Feedback received

ok
boolean
Example:

true