POST
/
v1
/
feedback
curl -X POST 'https://api.scrapegraphai.com/v1/feedback' \
  -H 'SGAI-APIKEY: YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
    "request_id": "123e4567-e89b-12d3-a456-426614174000",
    "rating": 5,
    "feedback_text": "Great service!"
  }'
{
  "feedback_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "request_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "message": "Feedback submitted successfully",
  "feedback_timestamp": "2023-11-07T05:31:56Z"
}

This endpoint allows you to submit feedback for any request you’ve made using our services (SmartScraper, SearchScraper, or Markdownify). Your feedback helps us improve our services.

Rating System

  • Rating scale: 0-5 stars
  • Optional feedback text for additional comments
  • Each feedback is linked to a specific request ID

Authorizations

SGAI-APIKEY
string
header
required

Body

application/json
request_id
string
required

ID of the request/session this feedback is for

rating
integer
required
Required range: 0 <= x <= 5
feedback_text
string | null

Response

200
application/json
Successful Response
feedback_id
string
required
request_id
string
required
feedback_timestamp
string
required
message
string
default:Feedback submitted successfully