New Get a SurveyOL token, use OpenClaw to create a survey, and distribute invitations by email. See the workflow

Get Results

Use these endpoints to retrieve response data.

List Responses

  • Method: GET
  • URL: https://api.surveyol.com/v1/survey/{surveyId}/responses

View Response

  • Method: GET
  • URL: https://api.surveyol.com/v1/response/{responseId}

cURL (List)

curl --request GET \
--url https://api.surveyol.com/v1/survey/f04e6345-dd11-4342-8975-0a718d853505/responses \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'

cURL (View)

curl --request GET \
--url https://api.surveyol.com/v1/response/12052052-1242-4993-a8f7-d2274e011626 \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json'